├── .circleci └── config.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── README-libsnark.md ├── README.md ├── Transition-to-CMake.md ├── cuda-fixnum ├── .gitignore ├── CMakeLists.txt ├── LICENCE ├── README.md ├── bench │ └── bench.cu ├── build.sh ├── inputs ├── main.cu ├── src │ ├── array │ │ ├── fixnum_array.cu │ │ └── fixnum_array.h │ ├── fixnum │ │ ├── internal │ │ │ └── primitives.cu │ │ ├── nail.cu │ │ ├── slot_layout.cu │ │ ├── warp_fixnum.cu │ │ └── word_fixnum.cu │ ├── functions │ │ ├── chinese.cu │ │ ├── divexact.cu │ │ ├── internal │ │ │ └── modexp_impl.cu │ │ ├── modexp.cu │ │ ├── modinv.cu │ │ ├── multi_modexp.cu │ │ ├── paillier_decrypt.cu │ │ ├── paillier_encrypt.cu │ │ ├── quorem.cu │ │ └── quorem_preinv.cu │ ├── modnum │ │ ├── internal │ │ │ └── monty.cu │ │ ├── modnum_monty_cios.cu │ │ └── modnum_monty_redc.cu │ └── util │ │ └── cuda_wrap.h ├── tests │ ├── gentests.py │ └── test-suite.cu └── work_log.txt ├── cuda_prover_piecewise.cu ├── depends ├── CMakeLists.txt ├── ate-pairing │ ├── .gitignore │ ├── Makefile │ ├── ate.sln │ ├── ate.vsprops │ ├── common.mk │ ├── common.props │ ├── debug.props │ ├── include │ │ ├── bn.h │ │ ├── cybozu │ │ │ ├── benchmark.hpp │ │ │ ├── inttype.hpp │ │ │ ├── readme.txt │ │ │ └── test.hpp │ │ ├── zm.h │ │ └── zm2.h │ ├── java │ │ ├── BN254Test.java │ │ ├── Makefile │ │ ├── bn254_if.hpp │ │ ├── bn254_if.i │ │ ├── java.md │ │ ├── make_wrap.bat │ │ ├── run-bn254.bat │ │ └── set-java-path.bat │ ├── proj │ │ └── 11 │ │ │ ├── sample │ │ │ └── sample.vcxproj │ │ │ ├── test_bn │ │ │ └── test_bn.vcxproj │ │ │ └── zmlib │ │ │ └── zmlib.vcxproj │ ├── readme.md │ ├── release.props │ ├── release.vsprops │ ├── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── zm.cpp │ │ └── zm2.cpp │ └── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── bench.cpp │ │ ├── bench │ │ └── bench.vcproj │ │ ├── bn.cpp │ │ ├── calc-multi.cpp │ │ ├── java_api.cpp │ │ ├── loop_test.cpp │ │ ├── minitest.cpp │ │ ├── sample.cpp │ │ ├── test_bn.vcproj │ │ ├── test_point.hpp │ │ ├── test_zm.cpp │ │ ├── test_zm.vcproj │ │ └── util.h ├── gtest │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── appveyor.yml │ ├── googlemock │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── DesignDoc.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ ├── KnownIssues.md │ │ │ ├── v1_5 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── v1_6 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ └── v1_7 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ └── gmock-port.h │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── 2005 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcproj │ │ │ │ ├── gmock_config.vsprops │ │ │ │ ├── gmock_main.vcproj │ │ │ │ └── gmock_test.vcproj │ │ │ ├── 2010 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ │ └── 2015 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ ├── scripts │ │ │ ├── fuse_gmock_files.py │ │ │ ├── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ │ ├── gmock-config.in │ │ │ ├── gmock_doctor.py │ │ │ ├── upload.py │ │ │ └── upload_gmock.py │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-generated-actions_test.cc │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers_test.cc │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── googletest │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.md │ │ │ └── XcodeGuide.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── release_docs.py │ │ │ ├── test │ │ │ │ └── Makefile │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ └── travis.sh ├── libff │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── depends │ │ ├── CMakeLists.txt │ │ ├── ate-pairing │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── ate.sln │ │ │ ├── ate.vsprops │ │ │ ├── common.mk │ │ │ ├── common.props │ │ │ ├── debug.props │ │ │ ├── include │ │ │ │ ├── bn.h │ │ │ │ ├── cybozu │ │ │ │ │ ├── benchmark.hpp │ │ │ │ │ ├── inttype.hpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── test.hpp │ │ │ │ ├── zm.h │ │ │ │ └── zm2.h │ │ │ ├── java │ │ │ │ ├── BN254Test.java │ │ │ │ ├── Makefile │ │ │ │ ├── bn254_if.hpp │ │ │ │ ├── bn254_if.i │ │ │ │ ├── java.md │ │ │ │ ├── make_wrap.bat │ │ │ │ ├── run-bn254.bat │ │ │ │ └── set-java-path.bat │ │ │ ├── proj │ │ │ │ └── 11 │ │ │ │ │ ├── sample │ │ │ │ │ └── sample.vcxproj │ │ │ │ │ ├── test_bn │ │ │ │ │ └── test_bn.vcxproj │ │ │ │ │ └── zmlib │ │ │ │ │ └── zmlib.vcxproj │ │ │ ├── readme.md │ │ │ ├── release.props │ │ │ ├── release.vsprops │ │ │ ├── src │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── zm.cpp │ │ │ │ └── zm2.cpp │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── bench.cpp │ │ │ │ ├── bench │ │ │ │ └── bench.vcproj │ │ │ │ ├── bn.cpp │ │ │ │ ├── calc-multi.cpp │ │ │ │ ├── java_api.cpp │ │ │ │ ├── loop_test.cpp │ │ │ │ ├── minitest.cpp │ │ │ │ ├── sample.cpp │ │ │ │ ├── test_bn.vcproj │ │ │ │ ├── test_point.hpp │ │ │ │ ├── test_zm.cpp │ │ │ │ ├── test_zm.vcproj │ │ │ │ └── util.h │ │ └── xbyak │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── avx_type.hpp │ │ │ ├── b2hex.cpp │ │ │ ├── gen_avx512.cpp │ │ │ ├── gen_code.cpp │ │ │ ├── sortline.cpp │ │ │ └── update.bat │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ ├── sample │ │ │ ├── Makefile │ │ │ ├── bf.cpp │ │ │ ├── bf.vcproj │ │ │ ├── calc.cpp │ │ │ ├── calc.vcproj │ │ │ ├── calc2.cpp │ │ │ ├── echo.bf │ │ │ ├── fizzbuzz.bf │ │ │ ├── hello.bf │ │ │ ├── jmp_table.cpp │ │ │ ├── memfunc.cpp │ │ │ ├── quantize.cpp │ │ │ ├── quantize.vcproj │ │ │ ├── stackframe.cpp │ │ │ ├── static_buf.cpp │ │ │ ├── test0.cpp │ │ │ ├── test0.vcproj │ │ │ ├── test_util.cpp │ │ │ ├── test_util.vcproj │ │ │ ├── toyvm.cpp │ │ │ └── toyvm.vcproj │ │ │ ├── test │ │ │ ├── 6.bat │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── a.bat │ │ │ ├── address.cpp │ │ │ ├── bad_address.cpp │ │ │ ├── cvt_test.cpp │ │ │ ├── cybozu │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── inttype.hpp │ │ │ │ └── test.hpp │ │ │ ├── jmp.cpp │ │ │ ├── jmp.sln │ │ │ ├── jmp.vcproj │ │ │ ├── lib.h │ │ │ ├── lib_min.cpp │ │ │ ├── lib_run.cpp │ │ │ ├── lib_test.cpp │ │ │ ├── make_512.cpp │ │ │ ├── make_nm.cpp │ │ │ ├── misc.cpp │ │ │ ├── mprotect_test.cpp │ │ │ ├── nm_frame.cpp │ │ │ ├── normalize_prefix.cpp │ │ │ ├── readme.txt │ │ │ ├── rip-label-imm.cpp │ │ │ ├── sf_test.cpp │ │ │ ├── state.pptx │ │ │ ├── test_address.bat │ │ │ ├── test_address.sh │ │ │ ├── test_all.bat │ │ │ ├── test_avx.bat │ │ │ ├── test_avx.sh │ │ │ ├── test_avx512.bat │ │ │ ├── test_avx512.sh │ │ │ ├── test_avx_all.bat │ │ │ ├── test_jmp.bat │ │ │ ├── test_misc.bat │ │ │ ├── test_mmx.cpp │ │ │ ├── test_nm.bat │ │ │ ├── test_nm.sh │ │ │ └── test_nm_all.bat │ │ │ ├── xbyak.sln │ │ │ └── xbyak │ │ │ ├── xbyak.h │ │ │ ├── xbyak_bin2hex.h │ │ │ ├── xbyak_mnemonic.h │ │ │ └── xbyak_util.h │ └── libff │ │ ├── CMakeLists.txt │ │ ├── algebra │ │ ├── curves │ │ │ ├── alt_bn128 │ │ │ │ ├── alt_bn128_g1.cpp │ │ │ │ ├── alt_bn128_g1.hpp │ │ │ │ ├── alt_bn128_g2.cpp │ │ │ │ ├── alt_bn128_g2.hpp │ │ │ │ ├── alt_bn128_init.cpp │ │ │ │ ├── alt_bn128_init.hpp │ │ │ │ ├── alt_bn128_pairing.cpp │ │ │ │ ├── alt_bn128_pairing.hpp │ │ │ │ ├── alt_bn128_pp.cpp │ │ │ │ └── alt_bn128_pp.hpp │ │ │ ├── bn128 │ │ │ │ ├── bn128_g1.cpp │ │ │ │ ├── bn128_g1.hpp │ │ │ │ ├── bn128_g2.cpp │ │ │ │ ├── bn128_g2.hpp │ │ │ │ ├── bn128_gt.cpp │ │ │ │ ├── bn128_gt.hpp │ │ │ │ ├── bn128_init.cpp │ │ │ │ ├── bn128_init.hpp │ │ │ │ ├── bn128_pairing.cpp │ │ │ │ ├── bn128_pairing.hpp │ │ │ │ ├── bn128_pp.cpp │ │ │ │ ├── bn128_pp.hpp │ │ │ │ ├── bn_utils.hpp │ │ │ │ └── bn_utils.tcc │ │ │ ├── curve_utils.hpp │ │ │ ├── curve_utils.tcc │ │ │ ├── edwards │ │ │ │ ├── edwards_g1.cpp │ │ │ │ ├── edwards_g1.hpp │ │ │ │ ├── edwards_g2.cpp │ │ │ │ ├── edwards_g2.hpp │ │ │ │ ├── edwards_init.cpp │ │ │ │ ├── edwards_init.hpp │ │ │ │ ├── edwards_pairing.cpp │ │ │ │ ├── edwards_pairing.hpp │ │ │ │ ├── edwards_pp.cpp │ │ │ │ └── edwards_pp.hpp │ │ │ ├── mnt │ │ │ │ ├── mnt4 │ │ │ │ │ ├── mnt4_g1.cpp │ │ │ │ │ ├── mnt4_g1.hpp │ │ │ │ │ ├── mnt4_g2.cpp │ │ │ │ │ ├── mnt4_g2.hpp │ │ │ │ │ ├── mnt4_init.cpp │ │ │ │ │ ├── mnt4_init.hpp │ │ │ │ │ ├── mnt4_pairing.cpp │ │ │ │ │ ├── mnt4_pairing.hpp │ │ │ │ │ ├── mnt4_pp.cpp │ │ │ │ │ └── mnt4_pp.hpp │ │ │ │ ├── mnt46_common.cpp │ │ │ │ ├── mnt46_common.hpp │ │ │ │ └── mnt6 │ │ │ │ │ ├── mnt6_g1.cpp │ │ │ │ │ ├── mnt6_g1.hpp │ │ │ │ │ ├── mnt6_g2.cpp │ │ │ │ │ ├── mnt6_g2.hpp │ │ │ │ │ ├── mnt6_init.cpp │ │ │ │ │ ├── mnt6_init.hpp │ │ │ │ │ ├── mnt6_pairing.cpp │ │ │ │ │ ├── mnt6_pairing.hpp │ │ │ │ │ ├── mnt6_pp.cpp │ │ │ │ │ └── mnt6_pp.hpp │ │ │ ├── mnt753 │ │ │ │ ├── mnt46753_common.cpp │ │ │ │ ├── mnt46753_common.hpp │ │ │ │ ├── mnt4753 │ │ │ │ │ ├── mnt4753_g1.cpp │ │ │ │ │ ├── mnt4753_g1.hpp │ │ │ │ │ ├── mnt4753_g2.cpp │ │ │ │ │ ├── mnt4753_g2.hpp │ │ │ │ │ ├── mnt4753_init.cpp │ │ │ │ │ ├── mnt4753_init.hpp │ │ │ │ │ ├── mnt4753_pairing.cpp │ │ │ │ │ ├── mnt4753_pairing.hpp │ │ │ │ │ ├── mnt4753_pp.cpp │ │ │ │ │ └── mnt4753_pp.hpp │ │ │ │ └── mnt6753 │ │ │ │ │ ├── mnt6753_g1.cpp │ │ │ │ │ ├── mnt6753_g1.hpp │ │ │ │ │ ├── mnt6753_g2.cpp │ │ │ │ │ ├── mnt6753_g2.hpp │ │ │ │ │ ├── mnt6753_init.cpp │ │ │ │ │ ├── mnt6753_init.hpp │ │ │ │ │ ├── mnt6753_pairing.cpp │ │ │ │ │ ├── mnt6753_pairing.hpp │ │ │ │ │ ├── mnt6753_pp.cpp │ │ │ │ │ └── mnt6753_pp.hpp │ │ │ ├── public_params.hpp │ │ │ └── tests │ │ │ │ ├── test_bilinearity.cpp │ │ │ │ └── test_groups.cpp │ │ ├── exponentiation │ │ │ ├── exponentiation.hpp │ │ │ └── exponentiation.tcc │ │ ├── fields │ │ │ ├── bigint.hpp │ │ │ ├── bigint.tcc │ │ │ ├── field_utils.hpp │ │ │ ├── field_utils.tcc │ │ │ ├── fp.hpp │ │ │ ├── fp.tcc │ │ │ ├── fp12_2over3over2.hpp │ │ │ ├── fp12_2over3over2.tcc │ │ │ ├── fp2.hpp │ │ │ ├── fp2.tcc │ │ │ ├── fp3.hpp │ │ │ ├── fp3.tcc │ │ │ ├── fp4.hpp │ │ │ ├── fp4.tcc │ │ │ ├── fp6_2over3.hpp │ │ │ ├── fp6_2over3.tcc │ │ │ ├── fp6_3over2.hpp │ │ │ ├── fp6_3over2.tcc │ │ │ ├── fp_aux.tcc │ │ │ └── tests │ │ │ │ └── test_fields.cpp │ │ └── scalar_multiplication │ │ │ ├── multiexp.hpp │ │ │ ├── multiexp.tcc │ │ │ ├── multiexp_profile.cpp │ │ │ ├── wnaf.hpp │ │ │ └── wnaf.tcc │ │ └── common │ │ ├── default_types │ │ └── ec_pp.hpp │ │ ├── double.cpp │ │ ├── double.hpp │ │ ├── profiling.cpp │ │ ├── profiling.hpp │ │ ├── rng.hpp │ │ ├── rng.tcc │ │ ├── serialization.hpp │ │ ├── serialization.tcc │ │ ├── template_utils.hpp │ │ ├── utils.cpp │ │ ├── utils.hpp │ │ └── utils.tcc ├── libfqfft │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── depends │ │ ├── CMakeLists.txt │ │ ├── ate-pairing │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── ate.sln │ │ │ ├── ate.vsprops │ │ │ ├── common.mk │ │ │ ├── common.props │ │ │ ├── debug.props │ │ │ ├── include │ │ │ │ ├── bn.h │ │ │ │ ├── cybozu │ │ │ │ │ ├── benchmark.hpp │ │ │ │ │ ├── inttype.hpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── test.hpp │ │ │ │ ├── zm.h │ │ │ │ └── zm2.h │ │ │ ├── java │ │ │ │ ├── BN254Test.java │ │ │ │ ├── Makefile │ │ │ │ ├── bn254_if.hpp │ │ │ │ ├── bn254_if.i │ │ │ │ ├── java.md │ │ │ │ ├── make_wrap.bat │ │ │ │ ├── run-bn254.bat │ │ │ │ └── set-java-path.bat │ │ │ ├── proj │ │ │ │ └── 11 │ │ │ │ │ ├── sample │ │ │ │ │ └── sample.vcxproj │ │ │ │ │ ├── test_bn │ │ │ │ │ └── test_bn.vcxproj │ │ │ │ │ └── zmlib │ │ │ │ │ └── zmlib.vcxproj │ │ │ ├── readme.md │ │ │ ├── release.props │ │ │ ├── release.vsprops │ │ │ ├── src │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── zm.cpp │ │ │ │ └── zm2.cpp │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── bench.cpp │ │ │ │ ├── bench │ │ │ │ └── bench.vcproj │ │ │ │ ├── bn.cpp │ │ │ │ ├── calc-multi.cpp │ │ │ │ ├── java_api.cpp │ │ │ │ ├── loop_test.cpp │ │ │ │ ├── minitest.cpp │ │ │ │ ├── sample.cpp │ │ │ │ ├── test_bn.vcproj │ │ │ │ ├── test_point.hpp │ │ │ │ ├── test_zm.cpp │ │ │ │ ├── test_zm.vcproj │ │ │ │ └── util.h │ │ ├── gtest │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── googlemock │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── build-aux │ │ │ │ │ └── .keep │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── DesignDoc.md │ │ │ │ │ ├── DevGuide.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ │ ├── KnownIssues.md │ │ │ │ │ ├── v1_5 │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ │ ├── v1_6 │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ │ └── v1_7 │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ ├── include │ │ │ │ │ └── gmock │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ ├── make │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── 2005 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ │ ├── 2010 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ │ └── 2015 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ ├── scripts │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ ├── gmock_doctor.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gmock.py │ │ │ │ ├── src │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ ├── gmock.cc │ │ │ │ │ └── gmock_main.cc │ │ │ │ └── test │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ └── gmock_test_utils.py │ │ │ ├── googletest │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── build-aux │ │ │ │ │ └── .keep │ │ │ │ ├── cmake │ │ │ │ │ └── internal_utils.cmake │ │ │ │ ├── codegear │ │ │ │ │ ├── gtest.cbproj │ │ │ │ │ ├── gtest.groupproj │ │ │ │ │ ├── gtest_all.cc │ │ │ │ │ ├── gtest_link.cc │ │ │ │ │ ├── gtest_main.cbproj │ │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── AdvancedGuide.md │ │ │ │ │ ├── DevGuide.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── FAQ.md │ │ │ │ │ ├── Primer.md │ │ │ │ │ ├── PumpManual.md │ │ │ │ │ ├── Samples.md │ │ │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ │ │ ├── V1_5_Documentation.md │ │ │ │ │ ├── V1_5_FAQ.md │ │ │ │ │ ├── V1_5_Primer.md │ │ │ │ │ ├── V1_5_PumpManual.md │ │ │ │ │ ├── V1_5_XcodeGuide.md │ │ │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ │ │ ├── V1_6_Documentation.md │ │ │ │ │ ├── V1_6_FAQ.md │ │ │ │ │ ├── V1_6_Primer.md │ │ │ │ │ ├── V1_6_PumpManual.md │ │ │ │ │ ├── V1_6_Samples.md │ │ │ │ │ ├── V1_6_XcodeGuide.md │ │ │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ │ │ ├── V1_7_Documentation.md │ │ │ │ │ ├── V1_7_FAQ.md │ │ │ │ │ ├── V1_7_Primer.md │ │ │ │ │ ├── V1_7_PumpManual.md │ │ │ │ │ ├── V1_7_Samples.md │ │ │ │ │ ├── V1_7_XcodeGuide.md │ │ │ │ │ └── XcodeGuide.md │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ └── gtest.h │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ ├── m4 │ │ │ │ │ ├── acx_pthread.m4 │ │ │ │ │ └── gtest.m4 │ │ │ │ ├── make │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ ├── gtest-md.vcproj │ │ │ │ │ ├── gtest.sln │ │ │ │ │ ├── gtest.vcproj │ │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ │ ├── gtest_main.vcproj │ │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ │ └── gtest_unittest.vcproj │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.cc │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample10_unittest.cc │ │ │ │ │ ├── sample1_unittest.cc │ │ │ │ │ ├── sample2.cc │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample2_unittest.cc │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ ├── sample3_unittest.cc │ │ │ │ │ ├── sample4.cc │ │ │ │ │ ├── sample4.h │ │ │ │ │ ├── sample4_unittest.cc │ │ │ │ │ ├── sample5_unittest.cc │ │ │ │ │ ├── sample6_unittest.cc │ │ │ │ │ ├── sample7_unittest.cc │ │ │ │ │ ├── sample8_unittest.cc │ │ │ │ │ └── sample9_unittest.cc │ │ │ │ ├── scripts │ │ │ │ │ ├── common.py │ │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ │ ├── gtest-config.in │ │ │ │ │ ├── pump.py │ │ │ │ │ ├── release_docs.py │ │ │ │ │ ├── test │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gtest.py │ │ │ │ ├── src │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest-death-test.cc │ │ │ │ │ ├── gtest-filepath.cc │ │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ │ ├── gtest-port.cc │ │ │ │ │ ├── gtest-printers.cc │ │ │ │ │ ├── gtest-test-part.cc │ │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ │ ├── gtest.cc │ │ │ │ │ └── gtest_main.cc │ │ │ │ ├── test │ │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ │ ├── gtest-message_test.cc │ │ │ │ │ ├── gtest-options_test.cc │ │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ │ ├── gtest-port_test.cc │ │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ │ ├── gtest_all_test.cc │ │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ │ ├── gtest_color_test.py │ │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ │ ├── gtest_help_test.py │ │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ │ ├── gtest_output_test.py │ │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ │ ├── gtest_test_utils.py │ │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ │ ├── gtest_unittest.cc │ │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ │ ├── production.cc │ │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ │ ├── Config │ │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ │ ├── General.xcconfig │ │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ │ └── TestTarget.xcconfig │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── runtests.sh │ │ │ │ │ │ ├── widget.cc │ │ │ │ │ │ ├── widget.h │ │ │ │ │ │ └── widget_test.cc │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── runtests.sh │ │ │ │ │ └── versiongenerate.py │ │ │ │ │ └── gtest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── travis.sh │ │ ├── libff │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── depends │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ate-pairing │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ate.sln │ │ │ │ │ ├── ate.vsprops │ │ │ │ │ ├── common.mk │ │ │ │ │ ├── common.props │ │ │ │ │ ├── debug.props │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bn.h │ │ │ │ │ │ ├── cybozu │ │ │ │ │ │ │ ├── benchmark.hpp │ │ │ │ │ │ │ ├── inttype.hpp │ │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ │ └── test.hpp │ │ │ │ │ │ ├── zm.h │ │ │ │ │ │ └── zm2.h │ │ │ │ │ ├── java │ │ │ │ │ │ ├── BN254Test.java │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bn254_if.hpp │ │ │ │ │ │ ├── bn254_if.i │ │ │ │ │ │ ├── java.md │ │ │ │ │ │ ├── make_wrap.bat │ │ │ │ │ │ ├── run-bn254.bat │ │ │ │ │ │ └── set-java-path.bat │ │ │ │ │ ├── proj │ │ │ │ │ │ └── 11 │ │ │ │ │ │ │ ├── sample │ │ │ │ │ │ │ └── sample.vcxproj │ │ │ │ │ │ │ ├── test_bn │ │ │ │ │ │ │ └── test_bn.vcxproj │ │ │ │ │ │ │ └── zmlib │ │ │ │ │ │ │ └── zmlib.vcxproj │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── release.props │ │ │ │ │ ├── release.vsprops │ │ │ │ │ ├── src │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── zm.cpp │ │ │ │ │ │ └── zm2.cpp │ │ │ │ │ └── test │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bench.cpp │ │ │ │ │ │ ├── bench │ │ │ │ │ │ └── bench.vcproj │ │ │ │ │ │ ├── bn.cpp │ │ │ │ │ │ ├── calc-multi.cpp │ │ │ │ │ │ ├── java_api.cpp │ │ │ │ │ │ ├── loop_test.cpp │ │ │ │ │ │ ├── minitest.cpp │ │ │ │ │ │ ├── sample.cpp │ │ │ │ │ │ ├── test_bn.vcproj │ │ │ │ │ │ ├── test_point.hpp │ │ │ │ │ │ ├── test_zm.cpp │ │ │ │ │ │ ├── test_zm.vcproj │ │ │ │ │ │ └── util.h │ │ │ │ └── xbyak │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── avx_type.hpp │ │ │ │ │ ├── b2hex.cpp │ │ │ │ │ ├── gen_avx512.cpp │ │ │ │ │ ├── gen_code.cpp │ │ │ │ │ ├── sortline.cpp │ │ │ │ │ └── update.bat │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf.cpp │ │ │ │ │ ├── bf.vcproj │ │ │ │ │ ├── calc.cpp │ │ │ │ │ ├── calc.vcproj │ │ │ │ │ ├── calc2.cpp │ │ │ │ │ ├── echo.bf │ │ │ │ │ ├── fizzbuzz.bf │ │ │ │ │ ├── hello.bf │ │ │ │ │ ├── jmp_table.cpp │ │ │ │ │ ├── memfunc.cpp │ │ │ │ │ ├── quantize.cpp │ │ │ │ │ ├── quantize.vcproj │ │ │ │ │ ├── stackframe.cpp │ │ │ │ │ ├── static_buf.cpp │ │ │ │ │ ├── test0.cpp │ │ │ │ │ ├── test0.vcproj │ │ │ │ │ ├── test_util.cpp │ │ │ │ │ ├── test_util.vcproj │ │ │ │ │ ├── toyvm.cpp │ │ │ │ │ └── toyvm.vcproj │ │ │ │ │ ├── test │ │ │ │ │ ├── 6.bat │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── a.bat │ │ │ │ │ ├── address.cpp │ │ │ │ │ ├── bad_address.cpp │ │ │ │ │ ├── cvt_test.cpp │ │ │ │ │ ├── cybozu │ │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ │ ├── inttype.hpp │ │ │ │ │ │ └── test.hpp │ │ │ │ │ ├── jmp.cpp │ │ │ │ │ ├── jmp.sln │ │ │ │ │ ├── jmp.vcproj │ │ │ │ │ ├── lib.h │ │ │ │ │ ├── lib_min.cpp │ │ │ │ │ ├── lib_run.cpp │ │ │ │ │ ├── lib_test.cpp │ │ │ │ │ ├── make_512.cpp │ │ │ │ │ ├── make_nm.cpp │ │ │ │ │ ├── misc.cpp │ │ │ │ │ ├── mprotect_test.cpp │ │ │ │ │ ├── nm_frame.cpp │ │ │ │ │ ├── normalize_prefix.cpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── rip-label-imm.cpp │ │ │ │ │ ├── sf_test.cpp │ │ │ │ │ ├── state.pptx │ │ │ │ │ ├── test_address.bat │ │ │ │ │ ├── test_address.sh │ │ │ │ │ ├── test_all.bat │ │ │ │ │ ├── test_avx.bat │ │ │ │ │ ├── test_avx.sh │ │ │ │ │ ├── test_avx512.bat │ │ │ │ │ ├── test_avx512.sh │ │ │ │ │ ├── test_avx_all.bat │ │ │ │ │ ├── test_jmp.bat │ │ │ │ │ ├── test_misc.bat │ │ │ │ │ ├── test_mmx.cpp │ │ │ │ │ ├── test_nm.bat │ │ │ │ │ ├── test_nm.sh │ │ │ │ │ └── test_nm_all.bat │ │ │ │ │ ├── xbyak.sln │ │ │ │ │ └── xbyak │ │ │ │ │ ├── xbyak.h │ │ │ │ │ ├── xbyak_bin2hex.h │ │ │ │ │ ├── xbyak_mnemonic.h │ │ │ │ │ └── xbyak_util.h │ │ │ └── libff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── algebra │ │ │ │ ├── curves │ │ │ │ │ ├── alt_bn128 │ │ │ │ │ │ ├── alt_bn128_g1.cpp │ │ │ │ │ │ ├── alt_bn128_g1.hpp │ │ │ │ │ │ ├── alt_bn128_g2.cpp │ │ │ │ │ │ ├── alt_bn128_g2.hpp │ │ │ │ │ │ ├── alt_bn128_init.cpp │ │ │ │ │ │ ├── alt_bn128_init.hpp │ │ │ │ │ │ ├── alt_bn128_pairing.cpp │ │ │ │ │ │ ├── alt_bn128_pairing.hpp │ │ │ │ │ │ ├── alt_bn128_pp.cpp │ │ │ │ │ │ └── alt_bn128_pp.hpp │ │ │ │ │ ├── bn128 │ │ │ │ │ │ ├── bn128_g1.cpp │ │ │ │ │ │ ├── bn128_g1.hpp │ │ │ │ │ │ ├── bn128_g2.cpp │ │ │ │ │ │ ├── bn128_g2.hpp │ │ │ │ │ │ ├── bn128_gt.cpp │ │ │ │ │ │ ├── bn128_gt.hpp │ │ │ │ │ │ ├── bn128_init.cpp │ │ │ │ │ │ ├── bn128_init.hpp │ │ │ │ │ │ ├── bn128_pairing.cpp │ │ │ │ │ │ ├── bn128_pairing.hpp │ │ │ │ │ │ ├── bn128_pp.cpp │ │ │ │ │ │ ├── bn128_pp.hpp │ │ │ │ │ │ ├── bn_utils.hpp │ │ │ │ │ │ └── bn_utils.tcc │ │ │ │ │ ├── curve_utils.hpp │ │ │ │ │ ├── curve_utils.tcc │ │ │ │ │ ├── edwards │ │ │ │ │ │ ├── edwards_g1.cpp │ │ │ │ │ │ ├── edwards_g1.hpp │ │ │ │ │ │ ├── edwards_g2.cpp │ │ │ │ │ │ ├── edwards_g2.hpp │ │ │ │ │ │ ├── edwards_init.cpp │ │ │ │ │ │ ├── edwards_init.hpp │ │ │ │ │ │ ├── edwards_pairing.cpp │ │ │ │ │ │ ├── edwards_pairing.hpp │ │ │ │ │ │ ├── edwards_pp.cpp │ │ │ │ │ │ └── edwards_pp.hpp │ │ │ │ │ ├── mnt │ │ │ │ │ │ ├── mnt4 │ │ │ │ │ │ │ ├── mnt4_g1.cpp │ │ │ │ │ │ │ ├── mnt4_g1.hpp │ │ │ │ │ │ │ ├── mnt4_g2.cpp │ │ │ │ │ │ │ ├── mnt4_g2.hpp │ │ │ │ │ │ │ ├── mnt4_init.cpp │ │ │ │ │ │ │ ├── mnt4_init.hpp │ │ │ │ │ │ │ ├── mnt4_pairing.cpp │ │ │ │ │ │ │ ├── mnt4_pairing.hpp │ │ │ │ │ │ │ ├── mnt4_pp.cpp │ │ │ │ │ │ │ └── mnt4_pp.hpp │ │ │ │ │ │ ├── mnt46_common.cpp │ │ │ │ │ │ ├── mnt46_common.hpp │ │ │ │ │ │ └── mnt6 │ │ │ │ │ │ │ ├── mnt6_g1.cpp │ │ │ │ │ │ │ ├── mnt6_g1.hpp │ │ │ │ │ │ │ ├── mnt6_g2.cpp │ │ │ │ │ │ │ ├── mnt6_g2.hpp │ │ │ │ │ │ │ ├── mnt6_init.cpp │ │ │ │ │ │ │ ├── mnt6_init.hpp │ │ │ │ │ │ │ ├── mnt6_pairing.cpp │ │ │ │ │ │ │ ├── mnt6_pairing.hpp │ │ │ │ │ │ │ ├── mnt6_pp.cpp │ │ │ │ │ │ │ └── mnt6_pp.hpp │ │ │ │ │ ├── public_params.hpp │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test_bilinearity.cpp │ │ │ │ │ │ └── test_groups.cpp │ │ │ │ ├── exponentiation │ │ │ │ │ ├── exponentiation.hpp │ │ │ │ │ └── exponentiation.tcc │ │ │ │ ├── fields │ │ │ │ │ ├── bigint.hpp │ │ │ │ │ ├── bigint.tcc │ │ │ │ │ ├── field_utils.hpp │ │ │ │ │ ├── field_utils.tcc │ │ │ │ │ ├── fp.hpp │ │ │ │ │ ├── fp.tcc │ │ │ │ │ ├── fp12_2over3over2.hpp │ │ │ │ │ ├── fp12_2over3over2.tcc │ │ │ │ │ ├── fp2.hpp │ │ │ │ │ ├── fp2.tcc │ │ │ │ │ ├── fp3.hpp │ │ │ │ │ ├── fp3.tcc │ │ │ │ │ ├── fp4.hpp │ │ │ │ │ ├── fp4.tcc │ │ │ │ │ ├── fp6_2over3.hpp │ │ │ │ │ ├── fp6_2over3.tcc │ │ │ │ │ ├── fp6_3over2.hpp │ │ │ │ │ ├── fp6_3over2.tcc │ │ │ │ │ ├── fp_aux.tcc │ │ │ │ │ └── tests │ │ │ │ │ │ └── test_fields.cpp │ │ │ │ └── scalar_multiplication │ │ │ │ │ ├── multiexp.hpp │ │ │ │ │ ├── multiexp.tcc │ │ │ │ │ ├── multiexp_profile.cpp │ │ │ │ │ ├── wnaf.hpp │ │ │ │ │ └── wnaf.tcc │ │ │ │ └── common │ │ │ │ ├── default_types │ │ │ │ └── ec_pp.hpp │ │ │ │ ├── double.cpp │ │ │ │ ├── double.hpp │ │ │ │ ├── profiling.cpp │ │ │ │ ├── profiling.hpp │ │ │ │ ├── rng.hpp │ │ │ │ ├── rng.tcc │ │ │ │ ├── serialization.hpp │ │ │ │ ├── serialization.tcc │ │ │ │ ├── template_utils.hpp │ │ │ │ ├── utils.cpp │ │ │ │ ├── utils.hpp │ │ │ │ └── utils.tcc │ │ └── xbyak │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── gen │ │ │ ├── Makefile │ │ │ ├── avx_type.hpp │ │ │ ├── b2hex.cpp │ │ │ ├── gen_avx512.cpp │ │ │ ├── gen_code.cpp │ │ │ ├── sortline.cpp │ │ │ └── update.bat │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ ├── sample │ │ │ ├── Makefile │ │ │ ├── bf.cpp │ │ │ ├── bf.vcproj │ │ │ ├── calc.cpp │ │ │ ├── calc.vcproj │ │ │ ├── calc2.cpp │ │ │ ├── echo.bf │ │ │ ├── fizzbuzz.bf │ │ │ ├── hello.bf │ │ │ ├── jmp_table.cpp │ │ │ ├── memfunc.cpp │ │ │ ├── quantize.cpp │ │ │ ├── quantize.vcproj │ │ │ ├── stackframe.cpp │ │ │ ├── static_buf.cpp │ │ │ ├── test0.cpp │ │ │ ├── test0.vcproj │ │ │ ├── test_util.cpp │ │ │ ├── test_util.vcproj │ │ │ ├── toyvm.cpp │ │ │ └── toyvm.vcproj │ │ │ ├── test │ │ │ ├── 6.bat │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── a.bat │ │ │ ├── address.cpp │ │ │ ├── bad_address.cpp │ │ │ ├── cvt_test.cpp │ │ │ ├── cybozu │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── inttype.hpp │ │ │ │ └── test.hpp │ │ │ ├── jmp.cpp │ │ │ ├── jmp.sln │ │ │ ├── jmp.vcproj │ │ │ ├── lib.h │ │ │ ├── lib_min.cpp │ │ │ ├── lib_run.cpp │ │ │ ├── lib_test.cpp │ │ │ ├── make_512.cpp │ │ │ ├── make_nm.cpp │ │ │ ├── misc.cpp │ │ │ ├── mprotect_test.cpp │ │ │ ├── nm_frame.cpp │ │ │ ├── normalize_prefix.cpp │ │ │ ├── readme.txt │ │ │ ├── rip-label-imm.cpp │ │ │ ├── sf_test.cpp │ │ │ ├── state.pptx │ │ │ ├── test_address.bat │ │ │ ├── test_address.sh │ │ │ ├── test_all.bat │ │ │ ├── test_avx.bat │ │ │ ├── test_avx.sh │ │ │ ├── test_avx512.bat │ │ │ ├── test_avx512.sh │ │ │ ├── test_avx_all.bat │ │ │ ├── test_jmp.bat │ │ │ ├── test_misc.bat │ │ │ ├── test_mmx.cpp │ │ │ ├── test_nm.bat │ │ │ ├── test_nm.sh │ │ │ └── test_nm_all.bat │ │ │ ├── xbyak.sln │ │ │ └── xbyak │ │ │ ├── xbyak.h │ │ │ ├── xbyak_bin2hex.h │ │ │ ├── xbyak_mnemonic.h │ │ │ └── xbyak_util.h │ ├── libfqfft │ │ ├── CMakeLists.txt │ │ ├── evaluation_domain │ │ │ ├── domains │ │ │ │ ├── arithmetic_sequence_domain.hpp │ │ │ │ ├── arithmetic_sequence_domain.tcc │ │ │ │ ├── basic_radix2_domain.hpp │ │ │ │ ├── basic_radix2_domain.tcc │ │ │ │ ├── basic_radix2_domain_aux.hpp │ │ │ │ ├── basic_radix2_domain_aux.tcc │ │ │ │ ├── extended_radix2_domain.hpp │ │ │ │ ├── extended_radix2_domain.tcc │ │ │ │ ├── geometric_sequence_domain.hpp │ │ │ │ ├── geometric_sequence_domain.tcc │ │ │ │ ├── step_radix2_domain.hpp │ │ │ │ └── step_radix2_domain.tcc │ │ │ ├── evaluation_domain.hpp │ │ │ ├── get_evaluation_domain.hpp │ │ │ └── get_evaluation_domain.tcc │ │ ├── kronecker_substitution │ │ │ ├── kronecker_substitution.hpp │ │ │ └── kronecker_substitution.tcc │ │ ├── polynomial_arithmetic │ │ │ ├── basic_operations.hpp │ │ │ ├── basic_operations.tcc │ │ │ ├── basis_change.hpp │ │ │ ├── basis_change.tcc │ │ │ ├── naive_evaluate.hpp │ │ │ ├── naive_evaluate.tcc │ │ │ ├── xgcd.hpp │ │ │ └── xgcd.tcc │ │ ├── profiling │ │ │ ├── logs │ │ │ │ ├── memory │ │ │ │ │ ├── 02-19_03:04 │ │ │ │ │ │ ├── arithmetic_evaluation_1.csv │ │ │ │ │ │ ├── arithmetic_evaluation_2.csv │ │ │ │ │ │ ├── arithmetic_evaluation_4.csv │ │ │ │ │ │ ├── arithmetic_evaluation_8.csv │ │ │ │ │ │ ├── arithmetic_interpolation_1.csv │ │ │ │ │ │ ├── arithmetic_interpolation_2.csv │ │ │ │ │ │ ├── arithmetic_interpolation_4.csv │ │ │ │ │ │ ├── arithmetic_interpolation_8.csv │ │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ │ ├── geometric_evaluation_1.csv │ │ │ │ │ │ ├── geometric_evaluation_2.csv │ │ │ │ │ │ ├── geometric_evaluation_4.csv │ │ │ │ │ │ ├── geometric_evaluation_8.csv │ │ │ │ │ │ ├── geometric_interpolation_1.csv │ │ │ │ │ │ ├── geometric_interpolation_2.csv │ │ │ │ │ │ ├── geometric_interpolation_4.csv │ │ │ │ │ │ ├── geometric_interpolation_8.csv │ │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 02-19_03:18 │ │ │ │ │ │ ├── arithmetic_evaluation_1.csv │ │ │ │ │ │ ├── arithmetic_evaluation_2.csv │ │ │ │ │ │ ├── arithmetic_evaluation_4.csv │ │ │ │ │ │ ├── arithmetic_evaluation_8.csv │ │ │ │ │ │ ├── arithmetic_interpolation_1.csv │ │ │ │ │ │ ├── arithmetic_interpolation_2.csv │ │ │ │ │ │ ├── arithmetic_interpolation_4.csv │ │ │ │ │ │ ├── arithmetic_interpolation_8.csv │ │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ │ ├── geometric_evaluation_1.csv │ │ │ │ │ │ ├── geometric_evaluation_2.csv │ │ │ │ │ │ ├── geometric_evaluation_4.csv │ │ │ │ │ │ ├── geometric_evaluation_8.csv │ │ │ │ │ │ ├── geometric_interpolation_1.csv │ │ │ │ │ │ ├── geometric_interpolation_2.csv │ │ │ │ │ │ ├── geometric_interpolation_4.csv │ │ │ │ │ │ ├── geometric_interpolation_8.csv │ │ │ │ │ │ ├── memory.ps │ │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 02-26_03:56 │ │ │ │ │ │ ├── arithmetic_evaluation_1.csv │ │ │ │ │ │ ├── arithmetic_evaluation_2.csv │ │ │ │ │ │ ├── arithmetic_evaluation_4.csv │ │ │ │ │ │ ├── arithmetic_evaluation_8.csv │ │ │ │ │ │ ├── arithmetic_interpolation_1.csv │ │ │ │ │ │ ├── arithmetic_interpolation_2.csv │ │ │ │ │ │ ├── arithmetic_interpolation_4.csv │ │ │ │ │ │ ├── arithmetic_interpolation_8.csv │ │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ │ ├── geometric_evaluation_1.csv │ │ │ │ │ │ ├── geometric_evaluation_2.csv │ │ │ │ │ │ ├── geometric_evaluation_4.csv │ │ │ │ │ │ ├── geometric_evaluation_8.csv │ │ │ │ │ │ ├── geometric_interpolation_1.csv │ │ │ │ │ │ ├── geometric_interpolation_2.csv │ │ │ │ │ │ ├── geometric_interpolation_4.csv │ │ │ │ │ │ ├── geometric_interpolation_8.csv │ │ │ │ │ │ ├── memory.ps │ │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 03-03_03:44 │ │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ │ ├── memory.png │ │ │ │ │ │ ├── memory.ps │ │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 03-04_03:26 │ │ │ │ │ │ ├── arithmetic-evaluation-1.csv │ │ │ │ │ │ ├── arithmetic-evaluation-2.csv │ │ │ │ │ │ ├── arithmetic-evaluation-4.csv │ │ │ │ │ │ ├── arithmetic-evaluation-8.csv │ │ │ │ │ │ ├── arithmetic-interpolation-1.csv │ │ │ │ │ │ ├── arithmetic-interpolation-2.csv │ │ │ │ │ │ ├── arithmetic-interpolation-4.csv │ │ │ │ │ │ ├── arithmetic-interpolation-8.csv │ │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ │ ├── geometric-evaluation-1.csv │ │ │ │ │ │ ├── geometric-evaluation-2.csv │ │ │ │ │ │ ├── geometric-evaluation-4.csv │ │ │ │ │ │ ├── geometric-evaluation-8.csv │ │ │ │ │ │ ├── geometric-interpolation-1.csv │ │ │ │ │ │ ├── geometric-interpolation-2.csv │ │ │ │ │ │ ├── geometric-interpolation-4.csv │ │ │ │ │ │ ├── geometric-interpolation-8.csv │ │ │ │ │ │ ├── memory.ps │ │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 03-04_04:19 │ │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 05-29_12:36 │ │ │ │ │ │ ├── arithmetic-fft-1.csv │ │ │ │ │ │ ├── arithmetic-fft-2.csv │ │ │ │ │ │ ├── arithmetic-fft-4.csv │ │ │ │ │ │ ├── arithmetic-fft-8.csv │ │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ │ ├── geometric-fft-2.csv │ │ │ │ │ │ ├── geometric-fft-4.csv │ │ │ │ │ │ ├── geometric-fft-8.csv │ │ │ │ │ │ ├── memory.ps │ │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 05-29_12:49 │ │ │ │ │ │ ├── arithmetic-fft-1.csv │ │ │ │ │ │ ├── arithmetic-fft-2.csv │ │ │ │ │ │ ├── arithmetic-fft-4.csv │ │ │ │ │ │ ├── arithmetic-fft-8.csv │ │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ │ ├── geometric-fft-2.csv │ │ │ │ │ │ ├── geometric-fft-4.csv │ │ │ │ │ │ ├── geometric-fft-8.csv │ │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 05-29_12:52 │ │ │ │ │ │ ├── arithmetic-fft-1.csv │ │ │ │ │ │ ├── arithmetic-fft-2.csv │ │ │ │ │ │ ├── arithmetic-fft-4.csv │ │ │ │ │ │ ├── arithmetic-fft-8.csv │ │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ │ ├── geometric-fft-2.csv │ │ │ │ │ │ ├── geometric-fft-4.csv │ │ │ │ │ │ ├── geometric-fft-8.csv │ │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ └── 07-20_02:42 │ │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ │ └── geometric-fft-2.csv │ │ │ │ ├── operators │ │ │ │ │ ├── 02-17_05:55-serial │ │ │ │ │ │ ├── arithmetic_evaluation.csv │ │ │ │ │ │ ├── arithmetic_interpolation.csv │ │ │ │ │ │ ├── basic_radix2_fft.csv │ │ │ │ │ │ ├── extended_radix2_fft.csv │ │ │ │ │ │ ├── geometric_evaluation.csv │ │ │ │ │ │ ├── geometric_interpolation.csv │ │ │ │ │ │ └── step_radix2_fft.csv │ │ │ │ │ ├── 02-19_03:04 │ │ │ │ │ │ ├── arithmetic_evaluation.csv │ │ │ │ │ │ ├── arithmetic_interpolation.csv │ │ │ │ │ │ ├── basic_radix2_fft.csv │ │ │ │ │ │ ├── extended_radix2_fft.csv │ │ │ │ │ │ ├── geometric_evaluation.csv │ │ │ │ │ │ ├── geometric_interpolation.csv │ │ │ │ │ │ └── step_radix2_fft.csv │ │ │ │ │ ├── 02-19_03:18 │ │ │ │ │ │ ├── arithmetic_evaluation.csv │ │ │ │ │ │ ├── arithmetic_interpolation.csv │ │ │ │ │ │ ├── basic_radix2_fft.csv │ │ │ │ │ │ ├── extended_radix2_fft.csv │ │ │ │ │ │ ├── geometric_evaluation.csv │ │ │ │ │ │ ├── geometric_interpolation.csv │ │ │ │ │ │ ├── operators.ps │ │ │ │ │ │ └── step_radix2_fft.csv │ │ │ │ │ ├── 02-26_03:56 │ │ │ │ │ │ ├── arithmetic_evaluation.csv │ │ │ │ │ │ ├── arithmetic_interpolation.csv │ │ │ │ │ │ ├── basic_radix2_fft.csv │ │ │ │ │ │ ├── extended_radix2_fft.csv │ │ │ │ │ │ ├── geometric_evaluation.csv │ │ │ │ │ │ ├── geometric_interpolation.csv │ │ │ │ │ │ └── step_radix2_fft.csv │ │ │ │ │ ├── 03-04_03:26 │ │ │ │ │ │ ├── arithmetic-evaluation.csv │ │ │ │ │ │ ├── arithmetic-interpolation.csv │ │ │ │ │ │ ├── basic-radix2-fft.csv │ │ │ │ │ │ ├── extended-radix2-fft.csv │ │ │ │ │ │ ├── geometric-evaluation.csv │ │ │ │ │ │ ├── geometric-interpolation.csv │ │ │ │ │ │ ├── operators.ps │ │ │ │ │ │ └── step-radix2-fft.csv │ │ │ │ │ ├── 05-29_12:36 │ │ │ │ │ │ ├── arithmetic-fft.csv │ │ │ │ │ │ ├── basic-radix2-fft.csv │ │ │ │ │ │ ├── extended-radix2-fft.csv │ │ │ │ │ │ ├── geometric-fft.csv │ │ │ │ │ │ ├── operators.ps │ │ │ │ │ │ └── step-radix2-fft.csv │ │ │ │ │ ├── 05-29_12:49 │ │ │ │ │ │ ├── arithmetic-fft.csv │ │ │ │ │ │ ├── basic-radix2-fft.csv │ │ │ │ │ │ ├── extended-radix2-fft.csv │ │ │ │ │ │ ├── geometric-fft.csv │ │ │ │ │ │ └── step-radix2-fft.csv │ │ │ │ │ ├── 05-29_12:52 │ │ │ │ │ │ ├── arithmetic-fft.csv │ │ │ │ │ │ ├── basic-radix2-fft.csv │ │ │ │ │ │ ├── extended-radix2-fft.csv │ │ │ │ │ │ ├── geometric-fft.csv │ │ │ │ │ │ └── step-radix2-fft.csv │ │ │ │ │ └── 07-20_02:42 │ │ │ │ │ │ └── geometric-fft.csv │ │ │ │ └── runtime │ │ │ │ │ ├── 02-19_03:04 │ │ │ │ │ ├── arithmetic_evaluation_1.csv │ │ │ │ │ ├── arithmetic_evaluation_2.csv │ │ │ │ │ ├── arithmetic_evaluation_4.csv │ │ │ │ │ ├── arithmetic_evaluation_8.csv │ │ │ │ │ ├── arithmetic_interpolation_1.csv │ │ │ │ │ ├── arithmetic_interpolation_2.csv │ │ │ │ │ ├── arithmetic_interpolation_4.csv │ │ │ │ │ ├── arithmetic_interpolation_8.csv │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ ├── geometric_evaluation_1.csv │ │ │ │ │ ├── geometric_evaluation_2.csv │ │ │ │ │ ├── geometric_evaluation_4.csv │ │ │ │ │ ├── geometric_evaluation_8.csv │ │ │ │ │ ├── geometric_interpolation_1.csv │ │ │ │ │ ├── geometric_interpolation_2.csv │ │ │ │ │ ├── geometric_interpolation_4.csv │ │ │ │ │ ├── geometric_interpolation_8.csv │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 02-19_03:18 │ │ │ │ │ ├── arithmetic_evaluation_1.csv │ │ │ │ │ ├── arithmetic_evaluation_2.csv │ │ │ │ │ ├── arithmetic_evaluation_4.csv │ │ │ │ │ ├── arithmetic_evaluation_8.csv │ │ │ │ │ ├── arithmetic_interpolation_1.csv │ │ │ │ │ ├── arithmetic_interpolation_2.csv │ │ │ │ │ ├── arithmetic_interpolation_4.csv │ │ │ │ │ ├── arithmetic_interpolation_8.csv │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ ├── geometric_evaluation_1.csv │ │ │ │ │ ├── geometric_evaluation_2.csv │ │ │ │ │ ├── geometric_evaluation_4.csv │ │ │ │ │ ├── geometric_evaluation_8.csv │ │ │ │ │ ├── geometric_interpolation_1.csv │ │ │ │ │ ├── geometric_interpolation_2.csv │ │ │ │ │ ├── geometric_interpolation_4.csv │ │ │ │ │ ├── geometric_interpolation_8.csv │ │ │ │ │ ├── runtime.ps │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 02-26_03:56 │ │ │ │ │ ├── arithmetic_evaluation_1.csv │ │ │ │ │ ├── arithmetic_evaluation_2.csv │ │ │ │ │ ├── arithmetic_evaluation_4.csv │ │ │ │ │ ├── arithmetic_evaluation_8.csv │ │ │ │ │ ├── arithmetic_interpolation_1.csv │ │ │ │ │ ├── arithmetic_interpolation_2.csv │ │ │ │ │ ├── arithmetic_interpolation_4.csv │ │ │ │ │ ├── arithmetic_interpolation_8.csv │ │ │ │ │ ├── basic_radix2_fft_1.csv │ │ │ │ │ ├── basic_radix2_fft_2.csv │ │ │ │ │ ├── basic_radix2_fft_4.csv │ │ │ │ │ ├── basic_radix2_fft_8.csv │ │ │ │ │ ├── extended_radix2_fft_1.csv │ │ │ │ │ ├── extended_radix2_fft_2.csv │ │ │ │ │ ├── extended_radix2_fft_4.csv │ │ │ │ │ ├── extended_radix2_fft_8.csv │ │ │ │ │ ├── geometric_evaluation_1.csv │ │ │ │ │ ├── geometric_evaluation_2.csv │ │ │ │ │ ├── geometric_evaluation_4.csv │ │ │ │ │ ├── geometric_evaluation_8.csv │ │ │ │ │ ├── geometric_interpolation_1.csv │ │ │ │ │ ├── geometric_interpolation_2.csv │ │ │ │ │ ├── geometric_interpolation_4.csv │ │ │ │ │ ├── geometric_interpolation_8.csv │ │ │ │ │ ├── runtime.ps │ │ │ │ │ ├── step_radix2_fft_1.csv │ │ │ │ │ ├── step_radix2_fft_2.csv │ │ │ │ │ ├── step_radix2_fft_4.csv │ │ │ │ │ └── step_radix2_fft_8.csv │ │ │ │ │ ├── 03-04_03:26 │ │ │ │ │ ├── arithmetic-evaluation-1.csv │ │ │ │ │ ├── arithmetic-evaluation-2.csv │ │ │ │ │ ├── arithmetic-evaluation-4.csv │ │ │ │ │ ├── arithmetic-evaluation-8.csv │ │ │ │ │ ├── arithmetic-interpolation-1.csv │ │ │ │ │ ├── arithmetic-interpolation-2.csv │ │ │ │ │ ├── arithmetic-interpolation-4.csv │ │ │ │ │ ├── arithmetic-interpolation-8.csv │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ ├── geometric-evaluation-1.csv │ │ │ │ │ ├── geometric-evaluation-2.csv │ │ │ │ │ ├── geometric-evaluation-4.csv │ │ │ │ │ ├── geometric-evaluation-8.csv │ │ │ │ │ ├── geometric-interpolation-1.csv │ │ │ │ │ ├── geometric-interpolation-2.csv │ │ │ │ │ ├── geometric-interpolation-4.csv │ │ │ │ │ ├── geometric-interpolation-8.csv │ │ │ │ │ ├── runtime.ps │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 03-04_04:19 │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 03-14_11:12 │ │ │ │ │ ├── arithmetic-evaluation-1.csv │ │ │ │ │ ├── arithmetic-evaluation-2.csv │ │ │ │ │ ├── arithmetic-evaluation-4.csv │ │ │ │ │ ├── arithmetic-evaluation-8.csv │ │ │ │ │ ├── geometric-evaluation-1.csv │ │ │ │ │ ├── geometric-evaluation-2.csv │ │ │ │ │ ├── geometric-evaluation-4.csv │ │ │ │ │ ├── geometric-evaluation-8.csv │ │ │ │ │ └── runtime.ps │ │ │ │ │ ├── 05-29_12:36 │ │ │ │ │ ├── arithmetic-fft-1.csv │ │ │ │ │ ├── arithmetic-fft-2.csv │ │ │ │ │ ├── arithmetic-fft-4.csv │ │ │ │ │ ├── arithmetic-fft-8.csv │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ ├── geometric-fft-2.csv │ │ │ │ │ ├── geometric-fft-4.csv │ │ │ │ │ ├── geometric-fft-8.csv │ │ │ │ │ ├── runtime.ps │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 05-29_12:49 │ │ │ │ │ ├── arithmetic-fft-1.csv │ │ │ │ │ ├── arithmetic-fft-2.csv │ │ │ │ │ ├── arithmetic-fft-4.csv │ │ │ │ │ ├── arithmetic-fft-8.csv │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ ├── geometric-fft-2.csv │ │ │ │ │ ├── geometric-fft-4.csv │ │ │ │ │ ├── geometric-fft-8.csv │ │ │ │ │ ├── runtime.ps │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ ├── 05-29_without_O2 │ │ │ │ │ ├── basic-radix2-fft-1.csv │ │ │ │ │ ├── basic-radix2-fft-2.csv │ │ │ │ │ ├── basic-radix2-fft-4.csv │ │ │ │ │ ├── basic-radix2-fft-8.csv │ │ │ │ │ ├── extended-radix2-fft-1.csv │ │ │ │ │ ├── extended-radix2-fft-2.csv │ │ │ │ │ ├── extended-radix2-fft-4.csv │ │ │ │ │ ├── extended-radix2-fft-8.csv │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ ├── geometric-fft-2.csv │ │ │ │ │ ├── geometric-fft-4.csv │ │ │ │ │ ├── geometric-fft-8.csv │ │ │ │ │ ├── runtime.ps │ │ │ │ │ ├── step-radix2-fft-1.csv │ │ │ │ │ ├── step-radix2-fft-2.csv │ │ │ │ │ ├── step-radix2-fft-4.csv │ │ │ │ │ └── step-radix2-fft-8.csv │ │ │ │ │ └── 07-20_02:42 │ │ │ │ │ ├── geometric-fft-1.csv │ │ │ │ │ └── geometric-fft-2.csv │ │ │ ├── plot │ │ │ │ ├── memory_plot.gp │ │ │ │ ├── operators_plot.gp │ │ │ │ └── runtime_plot.gp │ │ │ ├── profile │ │ │ │ └── profile.cpp │ │ │ └── profiling_menu.cpp │ │ ├── tests │ │ │ ├── evaluation_domain_test.cpp │ │ │ ├── init_test.cpp │ │ │ ├── kronecker_substitution_test.cpp │ │ │ └── polynomial_arithmetic_test.cpp │ │ └── tools │ │ │ ├── exceptions.hpp │ │ │ ├── serialization.hpp │ │ │ └── serialization.tcc │ └── tutorials │ │ ├── CMakeLists.txt │ │ ├── lagrange_polynomial_evaluation_example.cpp │ │ ├── polynomial_evaluation_example.cpp │ │ └── polynomial_multiplication_on_fft_example.cpp ├── libsnark-supercop │ ├── README.md │ ├── do │ ├── include │ │ ├── crypto_core_aes128encrypt.h │ │ ├── crypto_hash_sha256.h │ │ ├── crypto_hash_sha512.h │ │ ├── crypto_sign.h │ │ ├── crypto_sign_ed25519.h │ │ ├── crypto_verify_16.h │ │ ├── crypto_verify_32.h │ │ ├── crypto_verify_8.h │ │ └── randombytes.h │ ├── src │ │ ├── crypto_core │ │ │ └── aes128encrypt │ │ │ │ └── openssl │ │ │ │ ├── api.h │ │ │ │ ├── core.c │ │ │ │ └── implementors │ │ ├── crypto_hash │ │ │ ├── sha256 │ │ │ │ └── sphlib │ │ │ │ │ ├── api.h │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash_sha256.c │ │ │ │ │ ├── implementors │ │ │ │ │ ├── md_helper.i │ │ │ │ │ ├── sha2.c │ │ │ │ │ ├── sph_sha2.h │ │ │ │ │ └── sph_types.h │ │ │ └── sha512 │ │ │ │ └── openssl │ │ │ │ ├── api.h │ │ │ │ ├── hash.c │ │ │ │ └── implementors │ │ ├── crypto_sign │ │ │ └── ed25519 │ │ │ │ └── amd64-51-30k │ │ │ │ ├── api.h │ │ │ │ ├── architectures │ │ │ │ ├── batch.c │ │ │ │ ├── choose_t.s │ │ │ │ ├── consts.s │ │ │ │ ├── fe25519.h │ │ │ │ ├── fe25519_add.c │ │ │ │ ├── fe25519_freeze.s │ │ │ │ ├── fe25519_getparity.c │ │ │ │ ├── fe25519_invert.c │ │ │ │ ├── fe25519_iseq.c │ │ │ │ ├── fe25519_iszero.c │ │ │ │ ├── fe25519_mul.s │ │ │ │ ├── fe25519_neg.c │ │ │ │ ├── fe25519_nsquare.s │ │ │ │ ├── fe25519_pack.c │ │ │ │ ├── fe25519_pow2523.c │ │ │ │ ├── fe25519_setint.c │ │ │ │ ├── fe25519_square.s │ │ │ │ ├── fe25519_sub.c │ │ │ │ ├── fe25519_unpack.c │ │ │ │ ├── ge25519.h │ │ │ │ ├── ge25519_add.c │ │ │ │ ├── ge25519_add_p1p1.s │ │ │ │ ├── ge25519_base.c │ │ │ │ ├── ge25519_base_niels_smalltables.data │ │ │ │ ├── ge25519_base_slide_multiples.data │ │ │ │ ├── ge25519_dbl_p1p1.s │ │ │ │ ├── ge25519_double.c │ │ │ │ ├── ge25519_double_scalarmult.c │ │ │ │ ├── ge25519_isneutral.c │ │ │ │ ├── ge25519_multi_scalarmult.c │ │ │ │ ├── ge25519_nielsadd2.s │ │ │ │ ├── ge25519_nielsadd_p1p1.s │ │ │ │ ├── ge25519_p1p1_to_p2.s │ │ │ │ ├── ge25519_p1p1_to_p3.s │ │ │ │ ├── ge25519_p1p1_to_pniels.s │ │ │ │ ├── ge25519_pack.c │ │ │ │ ├── ge25519_pnielsadd_p1p1.s │ │ │ │ ├── ge25519_scalarmult_base.c │ │ │ │ ├── ge25519_unpackneg.c │ │ │ │ ├── heap_rootreplaced.s │ │ │ │ ├── heap_rootreplaced_1limb.s │ │ │ │ ├── heap_rootreplaced_2limbs.s │ │ │ │ ├── heap_rootreplaced_3limbs.s │ │ │ │ ├── hram.c │ │ │ │ ├── hram.h │ │ │ │ ├── implementors │ │ │ │ ├── index_heap.c │ │ │ │ ├── index_heap.h │ │ │ │ ├── keypair.c │ │ │ │ ├── open.c │ │ │ │ ├── sc25519.h │ │ │ │ ├── sc25519_add.s │ │ │ │ ├── sc25519_barrett.s │ │ │ │ ├── sc25519_from32bytes.c │ │ │ │ ├── sc25519_from64bytes.c │ │ │ │ ├── sc25519_from_shortsc.c │ │ │ │ ├── sc25519_iszero.c │ │ │ │ ├── sc25519_lt.s │ │ │ │ ├── sc25519_mul.c │ │ │ │ ├── sc25519_mul_shortsc.c │ │ │ │ ├── sc25519_slide.c │ │ │ │ ├── sc25519_sub_nored.s │ │ │ │ ├── sc25519_to32bytes.c │ │ │ │ ├── sc25519_window4.c │ │ │ │ ├── sign.c │ │ │ │ └── ull4_mul.s │ │ ├── crypto_verify │ │ │ ├── 8 │ │ │ │ └── ref │ │ │ │ │ ├── api.h │ │ │ │ │ └── verify.c │ │ │ ├── 16 │ │ │ │ └── ref │ │ │ │ │ ├── api.h │ │ │ │ │ └── verify.c │ │ │ └── 32 │ │ │ │ └── ref │ │ │ │ ├── api.h │ │ │ │ └── verify_32.c │ │ └── randombytes.c │ └── version └── xbyak │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── Makefile │ ├── gen │ ├── Makefile │ ├── avx_type.hpp │ ├── b2hex.cpp │ ├── gen_avx512.cpp │ ├── gen_code.cpp │ ├── sortline.cpp │ └── update.bat │ ├── readme.md │ ├── readme.txt │ ├── sample │ ├── Makefile │ ├── bf.cpp │ ├── bf.vcproj │ ├── calc.cpp │ ├── calc.vcproj │ ├── calc2.cpp │ ├── echo.bf │ ├── fizzbuzz.bf │ ├── hello.bf │ ├── jmp_table.cpp │ ├── memfunc.cpp │ ├── quantize.cpp │ ├── quantize.vcproj │ ├── stackframe.cpp │ ├── static_buf.cpp │ ├── test0.cpp │ ├── test0.vcproj │ ├── test_util.cpp │ ├── test_util.vcproj │ ├── toyvm.cpp │ └── toyvm.vcproj │ ├── test │ ├── 6.bat │ ├── Makefile │ ├── Makefile.win │ ├── a.bat │ ├── address.cpp │ ├── bad_address.cpp │ ├── cvt_test.cpp │ ├── cybozu │ │ ├── COPYRIGHT │ │ ├── inttype.hpp │ │ └── test.hpp │ ├── jmp.cpp │ ├── jmp.sln │ ├── jmp.vcproj │ ├── lib.h │ ├── lib_min.cpp │ ├── lib_run.cpp │ ├── lib_test.cpp │ ├── make_512.cpp │ ├── make_nm.cpp │ ├── misc.cpp │ ├── mprotect_test.cpp │ ├── nm_frame.cpp │ ├── normalize_prefix.cpp │ ├── readme.txt │ ├── rip-label-imm.cpp │ ├── sf_test.cpp │ ├── state.pptx │ ├── test_address.bat │ ├── test_address.sh │ ├── test_all.bat │ ├── test_avx.bat │ ├── test_avx.sh │ ├── test_avx512.bat │ ├── test_avx512.sh │ ├── test_avx_all.bat │ ├── test_jmp.bat │ ├── test_misc.bat │ ├── test_mmx.cpp │ ├── test_nm.bat │ ├── test_nm.sh │ └── test_nm_all.bat │ ├── xbyak.sln │ └── xbyak │ ├── xbyak.h │ ├── xbyak_bin2hex.h │ ├── xbyak_mnemonic.h │ └── xbyak_util.h ├── doxygen.conf └── libsnark ├── CMakeLists.txt ├── caml ├── caml_bn128.cpp ├── caml_bn128.hpp ├── caml_mnt4.cpp ├── caml_mnt4.hpp ├── caml_mnt4753.cpp ├── caml_mnt4753.hpp ├── caml_mnt4753_specific.cpp ├── caml_mnt4_specific.cpp ├── caml_mnt6.cpp ├── caml_mnt6.hpp ├── caml_mnt6753.cpp ├── caml_mnt6753.hpp ├── caml_mnt6753_specific.cpp ├── caml_mnt6_specific.cpp ├── common.cpp └── copy_over.sh ├── common ├── data_structures │ ├── accumulation_vector.hpp │ ├── accumulation_vector.tcc │ ├── integer_permutation.cpp │ ├── integer_permutation.hpp │ ├── merkle_tree.hpp │ ├── merkle_tree.tcc │ ├── set_commitment.cpp │ ├── set_commitment.hpp │ ├── set_commitment.tcc │ ├── sparse_vector.hpp │ └── sparse_vector.tcc ├── default_types │ ├── bacs_ppzksnark_pp.hpp │ ├── r1cs_gg_ppzksnark_pp.hpp │ ├── r1cs_ppzkadsnark_pp.cpp │ ├── r1cs_ppzkadsnark_pp.hpp │ ├── r1cs_ppzkpcd_pp.cpp │ ├── r1cs_ppzkpcd_pp.hpp │ ├── r1cs_ppzksnark_pp.hpp │ ├── r1cs_se_ppzksnark_pp.hpp │ ├── ram_ppzksnark_pp.hpp │ ├── ram_zksnark_pp.hpp │ ├── tbcs_ppzksnark_pp.hpp │ ├── tinyram_ppzksnark_pp.cpp │ ├── tinyram_ppzksnark_pp.hpp │ ├── tinyram_zksnark_pp.cpp │ ├── tinyram_zksnark_pp.hpp │ └── uscs_ppzksnark_pp.hpp ├── libsnark_serialization.hpp └── routing_algorithms │ ├── as_waksman_routing_algorithm.cpp │ ├── as_waksman_routing_algorithm.hpp │ ├── benes_routing_algorithm.cpp │ ├── benes_routing_algorithm.hpp │ ├── profiling │ └── profile_routing_algorithms.cpp │ └── tests │ ├── test_routing_algorithms.cpp │ └── test_routing_algorithms.py ├── gadgetlib1 ├── constraint_profiling.cpp ├── constraint_profiling.hpp ├── examples │ ├── simple_example.hpp │ └── simple_example.tcc ├── gadget.hpp ├── gadget.tcc ├── gadgets │ ├── basic_gadgets.hpp │ ├── basic_gadgets.tcc │ ├── cpu_checkers │ │ ├── fooram │ │ │ ├── components │ │ │ │ ├── bar_gadget.hpp │ │ │ │ ├── bar_gadget.tcc │ │ │ │ ├── fooram_protoboard.hpp │ │ │ │ └── fooram_protoboard.tcc │ │ │ ├── examples │ │ │ │ └── test_fooram.cpp │ │ │ ├── fooram_cpu_checker.hpp │ │ │ └── fooram_cpu_checker.tcc │ │ └── tinyram │ │ │ ├── components │ │ │ ├── alu_arithmetic.hpp │ │ │ ├── alu_arithmetic.tcc │ │ │ ├── alu_control_flow.hpp │ │ │ ├── alu_control_flow.tcc │ │ │ ├── alu_gadget.hpp │ │ │ ├── alu_gadget.tcc │ │ │ ├── argument_decoder_gadget.hpp │ │ │ ├── argument_decoder_gadget.tcc │ │ │ ├── consistency_enforcer_gadget.hpp │ │ │ ├── consistency_enforcer_gadget.tcc │ │ │ ├── memory_masking_gadget.hpp │ │ │ ├── memory_masking_gadget.tcc │ │ │ ├── tinyram_protoboard.hpp │ │ │ ├── tinyram_protoboard.tcc │ │ │ └── word_variable_gadget.hpp │ │ │ ├── tinyram_cpu_checker.hpp │ │ │ └── tinyram_cpu_checker.tcc │ ├── curves │ │ ├── weierstrass_g1_gadget.hpp │ │ ├── weierstrass_g1_gadget.tcc │ │ ├── weierstrass_g2_gadget.hpp │ │ └── weierstrass_g2_gadget.tcc │ ├── delegated_ra_memory │ │ ├── memory_load_gadget.hpp │ │ └── memory_load_store_gadget.hpp │ ├── fields │ │ ├── exponentiation_gadget.hpp │ │ ├── exponentiation_gadget.tcc │ │ ├── fp2_gadgets.hpp │ │ ├── fp2_gadgets.tcc │ │ ├── fp3_gadgets.hpp │ │ ├── fp3_gadgets.tcc │ │ ├── fp4_gadgets.hpp │ │ ├── fp4_gadgets.tcc │ │ ├── fp6_gadgets.hpp │ │ └── fp6_gadgets.tcc │ ├── gadget_from_r1cs.hpp │ ├── gadget_from_r1cs.tcc │ ├── hashes │ │ ├── crh_gadget.hpp │ │ ├── digest_selector_gadget.hpp │ │ ├── digest_selector_gadget.tcc │ │ ├── hash_io.hpp │ │ ├── hash_io.tcc │ │ ├── knapsack │ │ │ ├── knapsack_gadget.hpp │ │ │ ├── knapsack_gadget.tcc │ │ │ └── tests │ │ │ │ ├── generate_knapsack_tests.py │ │ │ │ └── test_knapsack_gadget.cpp │ │ └── sha256 │ │ │ ├── sha256_aux.hpp │ │ │ ├── sha256_aux.tcc │ │ │ ├── sha256_components.hpp │ │ │ ├── sha256_components.tcc │ │ │ ├── sha256_gadget.hpp │ │ │ ├── sha256_gadget.tcc │ │ │ └── tests │ │ │ ├── generate_sha256_gadget_tests.py │ │ │ ├── pypy_sha256.py │ │ │ └── test_sha256_gadget.cpp │ ├── merkle_tree │ │ ├── merkle_authentication_path_variable.hpp │ │ ├── merkle_authentication_path_variable.tcc │ │ ├── merkle_tree_check_read_gadget.hpp │ │ ├── merkle_tree_check_read_gadget.tcc │ │ ├── merkle_tree_check_update_gadget.hpp │ │ ├── merkle_tree_check_update_gadget.tcc │ │ └── tests │ │ │ └── test_merkle_tree_gadgets.cpp │ ├── pairing │ │ ├── mnt_pairing_params.hpp │ │ ├── pairing_checks.hpp │ │ ├── pairing_checks.tcc │ │ ├── pairing_params.hpp │ │ ├── weierstrass_final_exponentiation.hpp │ │ ├── weierstrass_final_exponentiation.tcc │ │ ├── weierstrass_final_exponentiation_value.hpp │ │ ├── weierstrass_final_exponentiation_value.tcc │ │ ├── weierstrass_miller_loop.hpp │ │ ├── weierstrass_miller_loop.tcc │ │ ├── weierstrass_precomputation.hpp │ │ └── weierstrass_precomputation.tcc │ ├── routing │ │ ├── as_waksman_routing_gadget.hpp │ │ ├── as_waksman_routing_gadget.tcc │ │ ├── benes_routing_gadget.hpp │ │ ├── benes_routing_gadget.tcc │ │ └── profiling │ │ │ └── profile_routing_gadgets.cpp │ ├── set_commitment │ │ ├── set_commitment_gadget.hpp │ │ ├── set_commitment_gadget.tcc │ │ ├── set_membership_proof_variable.hpp │ │ ├── set_membership_proof_variable.tcc │ │ └── tests │ │ │ └── test_set_commitment_gadget.cpp │ └── verifiers │ │ ├── r1cs_gg_ppzksnark_verifier_gadget.hpp │ │ ├── r1cs_gg_ppzksnark_verifier_gadget.tcc │ │ ├── r1cs_ppzksnark_verifier_gadget.hpp │ │ ├── r1cs_ppzksnark_verifier_gadget.tcc │ │ ├── r1cs_se_ppzksnark_verifier_gadget.hpp │ │ ├── r1cs_se_ppzksnark_verifier_gadget.tcc │ │ └── tests │ │ ├── test_r1cs_gg_ppzksnark_verifier_gadget.cpp │ │ ├── test_r1cs_ppzksnark_verifier_gadget.cpp │ │ └── test_r1cs_se_ppzksnark_verifier_gadget.cpp ├── pb_variable.hpp ├── pb_variable.tcc ├── protoboard.hpp ├── protoboard.tcc └── tests │ └── gadgetlib1_test.cpp ├── gadgetlib2 ├── adapters.cpp ├── adapters.hpp ├── constraint.cpp ├── constraint.hpp ├── examples │ ├── simple_example.cpp │ ├── simple_example.hpp │ └── tutorial.cpp ├── gadget.cpp ├── gadget.hpp ├── gadgetMacros.hpp ├── infrastructure.cpp ├── infrastructure.hpp ├── integration.cpp ├── integration.hpp ├── pp.cpp ├── pp.hpp ├── protoboard.cpp ├── protoboard.hpp ├── tests │ ├── adapters_UTEST.cpp │ ├── constraint_UTEST.cpp │ ├── gadget_UTEST.cpp │ ├── gadgetlib2_test.cpp │ ├── integration_UTEST.cpp │ ├── protoboard_UTEST.cpp │ └── variable_UTEST.cpp ├── variable.cpp ├── variable.hpp └── variable_operators.hpp ├── generate_parameters.cpp ├── knowledge_commitment ├── kc_multiexp.hpp ├── kc_multiexp.tcc ├── knowledge_commitment.hpp └── knowledge_commitment.tcc ├── main.cpp ├── misc └── pedersen.cpp ├── prover_reference_functions.cpp ├── prover_reference_include └── prover_reference_functions.hpp ├── reductions ├── bacs_to_r1cs │ ├── bacs_to_r1cs.hpp │ └── bacs_to_r1cs.tcc ├── r1cs_to_qap │ ├── r1cs_to_qap.hpp │ └── r1cs_to_qap.tcc ├── r1cs_to_sap │ ├── r1cs_to_sap.hpp │ └── r1cs_to_sap.tcc ├── ram_to_r1cs │ ├── examples │ │ └── demo_arithmetization.cpp │ ├── gadgets │ │ ├── memory_checker_gadget.hpp │ │ ├── memory_checker_gadget.tcc │ │ ├── ram_universal_gadget.hpp │ │ ├── ram_universal_gadget.tcc │ │ ├── trace_lines.hpp │ │ └── trace_lines.tcc │ ├── ram_to_r1cs.hpp │ └── ram_to_r1cs.tcc ├── tbcs_to_uscs │ ├── get_tbcs_reduction.py │ ├── tbcs_reduction.txt │ ├── tbcs_to_uscs.hpp │ └── tbcs_to_uscs.tcc └── uscs_to_ssp │ ├── uscs_to_ssp.hpp │ └── uscs_to_ssp.tcc ├── relations ├── arithmetic_programs │ ├── qap │ │ ├── qap.hpp │ │ ├── qap.tcc │ │ └── tests │ │ │ └── test_qap.cpp │ ├── sap │ │ ├── sap.hpp │ │ ├── sap.tcc │ │ └── tests │ │ │ └── test_sap.cpp │ └── ssp │ │ ├── ssp.hpp │ │ ├── ssp.tcc │ │ └── tests │ │ └── test_ssp.cpp ├── circuit_satisfaction_problems │ ├── bacs │ │ ├── bacs.hpp │ │ ├── bacs.tcc │ │ └── examples │ │ │ ├── bacs_examples.hpp │ │ │ └── bacs_examples.tcc │ └── tbcs │ │ ├── examples │ │ ├── tbcs_examples.cpp │ │ └── tbcs_examples.hpp │ │ ├── tbcs.cpp │ │ └── tbcs.hpp ├── constraint_satisfaction_problems │ ├── r1cs │ │ ├── examples │ │ │ ├── r1cs_examples.hpp │ │ │ └── r1cs_examples.tcc │ │ ├── r1cs.hpp │ │ └── r1cs.tcc │ └── uscs │ │ ├── examples │ │ ├── uscs_examples.hpp │ │ └── uscs_examples.tcc │ │ ├── uscs.hpp │ │ └── uscs.tcc ├── ram_computations │ ├── memory │ │ ├── delegated_ra_memory.hpp │ │ ├── delegated_ra_memory.tcc │ │ ├── examples │ │ │ ├── memory_contents_examples.cpp │ │ │ └── memory_contents_examples.hpp │ │ ├── memory_interface.hpp │ │ ├── memory_store_trace.cpp │ │ ├── memory_store_trace.hpp │ │ ├── ra_memory.cpp │ │ └── ra_memory.hpp │ └── rams │ │ ├── examples │ │ ├── ram_examples.hpp │ │ └── ram_examples.tcc │ │ ├── fooram │ │ ├── fooram_aux.cpp │ │ ├── fooram_aux.hpp │ │ └── fooram_params.hpp │ │ ├── ram_params.hpp │ │ └── tinyram │ │ ├── tinyram_aux.cpp │ │ ├── tinyram_aux.hpp │ │ └── tinyram_params.hpp ├── variable.hpp └── variable.tcc ├── serialization.hpp └── zk_proof_systems ├── pcd └── r1cs_pcd │ ├── compliance_predicate │ ├── compliance_predicate.hpp │ ├── compliance_predicate.tcc │ ├── cp_handler.hpp │ ├── cp_handler.tcc │ └── examples │ │ ├── tally_cp.hpp │ │ └── tally_cp.tcc │ ├── ppzkpcd_compliance_predicate.hpp │ ├── r1cs_mp_ppzkpcd │ ├── examples │ │ ├── run_r1cs_mp_ppzkpcd.hpp │ │ └── run_r1cs_mp_ppzkpcd.tcc │ ├── mp_pcd_circuits.hpp │ ├── mp_pcd_circuits.tcc │ ├── profiling │ │ └── profile_r1cs_mp_ppzkpcd.cpp │ ├── r1cs_mp_ppzkpcd.hpp │ ├── r1cs_mp_ppzkpcd.tcc │ ├── r1cs_mp_ppzkpcd_params.hpp │ └── tests │ │ └── test_r1cs_mp_ppzkpcd.cpp │ ├── r1cs_pcd_params.hpp │ ├── r1cs_pcd_params.tcc │ └── r1cs_sp_ppzkpcd │ ├── examples │ ├── run_r1cs_sp_ppzkpcd.hpp │ └── run_r1cs_sp_ppzkpcd.tcc │ ├── profiling │ └── profile_r1cs_sp_ppzkpcd.cpp │ ├── r1cs_sp_ppzkpcd.hpp │ ├── r1cs_sp_ppzkpcd.tcc │ ├── r1cs_sp_ppzkpcd_params.hpp │ ├── sp_pcd_circuits.hpp │ ├── sp_pcd_circuits.tcc │ └── tests │ └── test_r1cs_sp_ppzkpcd.cpp ├── ppzkadsnark └── r1cs_ppzkadsnark │ ├── examples │ ├── demo_r1cs_ppzkadsnark.cpp │ ├── prf │ │ ├── aes_ctr_prf.hpp │ │ └── aes_ctr_prf.tcc │ ├── run_r1cs_ppzkadsnark.hpp │ ├── run_r1cs_ppzkadsnark.tcc │ └── signature │ │ ├── ed25519_signature.hpp │ │ └── ed25519_signature.tcc │ ├── r1cs_ppzkadsnark.hpp │ ├── r1cs_ppzkadsnark.tcc │ ├── r1cs_ppzkadsnark_params.hpp │ ├── r1cs_ppzkadsnark_prf.hpp │ └── r1cs_ppzkadsnark_signature.hpp ├── ppzksnark ├── README.md ├── bacs_ppzksnark │ ├── bacs_ppzksnark.hpp │ ├── bacs_ppzksnark.tcc │ ├── bacs_ppzksnark_params.hpp │ ├── examples │ │ ├── run_bacs_ppzksnark.hpp │ │ └── run_bacs_ppzksnark.tcc │ ├── profiling │ │ └── profile_bacs_ppzksnark.cpp │ └── tests │ │ └── test_bacs_ppzksnark.cpp ├── r1cs_bg_ppzksnark │ ├── examples │ │ ├── run_r1cs_gg_ppzksnark.hpp │ │ └── run_r1cs_gg_ppzksnark.tcc │ ├── profiling │ │ └── profile_r1cs_bg_ppzksnark.cpp │ ├── r1cs_bg_ppzksnark.hpp │ ├── r1cs_bg_ppzksnark.tcc │ ├── r1cs_bg_ppzksnark_params.hpp │ └── tests │ │ └── test_r1cs_bg_ppzksnark.cpp ├── r1cs_gg_ppzksnark │ ├── examples │ │ ├── run_r1cs_gg_ppzksnark.hpp │ │ └── run_r1cs_gg_ppzksnark.tcc │ ├── profiling │ │ └── profile_r1cs_gg_ppzksnark.cpp │ ├── r1cs_gg_ppzksnark.hpp │ ├── r1cs_gg_ppzksnark.tcc │ ├── r1cs_gg_ppzksnark_params.hpp │ └── tests │ │ └── test_r1cs_gg_ppzksnark.cpp ├── r1cs_ppzksnark │ ├── examples │ │ ├── run_r1cs_ppzksnark.hpp │ │ └── run_r1cs_ppzksnark.tcc │ ├── profiling │ │ └── profile_r1cs_ppzksnark.cpp │ ├── r1cs_ppzksnark.hpp │ ├── r1cs_ppzksnark.tcc │ ├── r1cs_ppzksnark_params.hpp │ └── tests │ │ └── test_r1cs_ppzksnark.cpp ├── r1cs_se_ppzksnark │ ├── examples │ │ ├── run_r1cs_se_ppzksnark.hpp │ │ └── run_r1cs_se_ppzksnark.tcc │ ├── profiling │ │ └── profile_r1cs_se_ppzksnark.cpp │ ├── r1cs_se_ppzksnark.hpp │ ├── r1cs_se_ppzksnark.tcc │ ├── r1cs_se_ppzksnark_params.hpp │ └── tests │ │ └── test_r1cs_se_ppzksnark.cpp ├── ram_ppzksnark │ ├── examples │ │ ├── demo_ram_ppzksnark.cpp │ │ ├── demo_ram_ppzksnark_generator.cpp │ │ ├── demo_ram_ppzksnark_prover.cpp │ │ ├── demo_ram_ppzksnark_verifier.cpp │ │ ├── run_ram_ppzksnark.hpp │ │ └── run_ram_ppzksnark.tcc │ ├── profiling │ │ └── profile_ram_ppzksnark.cpp │ ├── ram_ppzksnark.hpp │ ├── ram_ppzksnark.tcc │ ├── ram_ppzksnark_params.hpp │ └── tests │ │ └── test_ram_ppzksnark.cpp ├── tbcs_ppzksnark │ ├── examples │ │ ├── run_tbcs_ppzksnark.hpp │ │ └── run_tbcs_ppzksnark.tcc │ ├── profiling │ │ └── profile_tbcs_ppzksnark.cpp │ ├── tbcs_ppzksnark.hpp │ ├── tbcs_ppzksnark.tcc │ ├── tbcs_ppzksnark_params.hpp │ └── tests │ │ └── test_tbcs_ppzksnark.cpp └── uscs_ppzksnark │ ├── examples │ ├── run_uscs_ppzksnark.hpp │ └── run_uscs_ppzksnark.tcc │ ├── profiling │ └── profile_uscs_ppzksnark.cpp │ ├── tests │ └── test_uscs_ppzksnark.cpp │ ├── uscs_ppzksnark.hpp │ ├── uscs_ppzksnark.tcc │ └── uscs_ppzksnark_params.hpp └── zksnark └── ram_zksnark ├── examples ├── run_ram_zksnark.hpp └── run_ram_zksnark.tcc ├── profiling └── profile_ram_zksnark.cpp ├── ram_compliance_predicate.hpp ├── ram_compliance_predicate.tcc ├── ram_zksnark.hpp ├── ram_zksnark.tcc ├── ram_zksnark_params.hpp └── tests └── test_ram_zksnark.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/LICENSE -------------------------------------------------------------------------------- /README-libsnark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/README-libsnark.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/README.md -------------------------------------------------------------------------------- /Transition-to-CMake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/Transition-to-CMake.md -------------------------------------------------------------------------------- /cuda-fixnum/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/.gitignore -------------------------------------------------------------------------------- /cuda-fixnum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/CMakeLists.txt -------------------------------------------------------------------------------- /cuda-fixnum/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/LICENCE -------------------------------------------------------------------------------- /cuda-fixnum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/README.md -------------------------------------------------------------------------------- /cuda-fixnum/bench/bench.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/bench/bench.cu -------------------------------------------------------------------------------- /cuda-fixnum/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | make main 3 | -------------------------------------------------------------------------------- /cuda-fixnum/inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/inputs -------------------------------------------------------------------------------- /cuda-fixnum/main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/main.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/array/fixnum_array.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/array/fixnum_array.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/array/fixnum_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/array/fixnum_array.h -------------------------------------------------------------------------------- /cuda-fixnum/src/fixnum/internal/primitives.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/fixnum/internal/primitives.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/fixnum/nail.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/fixnum/nail.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/fixnum/slot_layout.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/fixnum/slot_layout.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/fixnum/warp_fixnum.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/fixnum/warp_fixnum.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/fixnum/word_fixnum.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/fixnum/word_fixnum.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/chinese.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/chinese.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/divexact.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/divexact.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/internal/modexp_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/internal/modexp_impl.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/modexp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/modexp.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/modinv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/modinv.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/multi_modexp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/multi_modexp.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/paillier_decrypt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/paillier_decrypt.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/paillier_encrypt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/paillier_encrypt.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/quorem.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/quorem.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/functions/quorem_preinv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/functions/quorem_preinv.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/modnum/internal/monty.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/modnum/internal/monty.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/modnum/modnum_monty_cios.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/modnum/modnum_monty_cios.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/modnum/modnum_monty_redc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/modnum/modnum_monty_redc.cu -------------------------------------------------------------------------------- /cuda-fixnum/src/util/cuda_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/src/util/cuda_wrap.h -------------------------------------------------------------------------------- /cuda-fixnum/tests/gentests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/tests/gentests.py -------------------------------------------------------------------------------- /cuda-fixnum/tests/test-suite.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/tests/test-suite.cu -------------------------------------------------------------------------------- /cuda-fixnum/work_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda-fixnum/work_log.txt -------------------------------------------------------------------------------- /cuda_prover_piecewise.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/cuda_prover_piecewise.cu -------------------------------------------------------------------------------- /depends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/CMakeLists.txt -------------------------------------------------------------------------------- /depends/ate-pairing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/.gitignore -------------------------------------------------------------------------------- /depends/ate-pairing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/Makefile -------------------------------------------------------------------------------- /depends/ate-pairing/ate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/ate.sln -------------------------------------------------------------------------------- /depends/ate-pairing/ate.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/ate.vsprops -------------------------------------------------------------------------------- /depends/ate-pairing/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/common.mk -------------------------------------------------------------------------------- /depends/ate-pairing/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/common.props -------------------------------------------------------------------------------- /depends/ate-pairing/debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/debug.props -------------------------------------------------------------------------------- /depends/ate-pairing/include/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/include/bn.h -------------------------------------------------------------------------------- /depends/ate-pairing/include/cybozu/benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/include/cybozu/benchmark.hpp -------------------------------------------------------------------------------- /depends/ate-pairing/include/cybozu/inttype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/include/cybozu/inttype.hpp -------------------------------------------------------------------------------- /depends/ate-pairing/include/cybozu/readme.txt: -------------------------------------------------------------------------------- 1 | see 2 | https://github.com/herumi/cybozulib/ 3 | -------------------------------------------------------------------------------- /depends/ate-pairing/include/cybozu/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/include/cybozu/test.hpp -------------------------------------------------------------------------------- /depends/ate-pairing/include/zm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/include/zm.h -------------------------------------------------------------------------------- /depends/ate-pairing/include/zm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/include/zm2.h -------------------------------------------------------------------------------- /depends/ate-pairing/java/BN254Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/BN254Test.java -------------------------------------------------------------------------------- /depends/ate-pairing/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/Makefile -------------------------------------------------------------------------------- /depends/ate-pairing/java/bn254_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/bn254_if.hpp -------------------------------------------------------------------------------- /depends/ate-pairing/java/bn254_if.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/bn254_if.i -------------------------------------------------------------------------------- /depends/ate-pairing/java/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/java.md -------------------------------------------------------------------------------- /depends/ate-pairing/java/make_wrap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/make_wrap.bat -------------------------------------------------------------------------------- /depends/ate-pairing/java/run-bn254.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/run-bn254.bat -------------------------------------------------------------------------------- /depends/ate-pairing/java/set-java-path.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/java/set-java-path.bat -------------------------------------------------------------------------------- /depends/ate-pairing/proj/11/sample/sample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/proj/11/sample/sample.vcxproj -------------------------------------------------------------------------------- /depends/ate-pairing/proj/11/test_bn/test_bn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/proj/11/test_bn/test_bn.vcxproj -------------------------------------------------------------------------------- /depends/ate-pairing/proj/11/zmlib/zmlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/proj/11/zmlib/zmlib.vcxproj -------------------------------------------------------------------------------- /depends/ate-pairing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/readme.md -------------------------------------------------------------------------------- /depends/ate-pairing/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/release.props -------------------------------------------------------------------------------- /depends/ate-pairing/release.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/release.vsprops -------------------------------------------------------------------------------- /depends/ate-pairing/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /depends/ate-pairing/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/src/Makefile -------------------------------------------------------------------------------- /depends/ate-pairing/src/zm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/src/zm.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/src/zm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/src/zm2.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/.gitignore -------------------------------------------------------------------------------- /depends/ate-pairing/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/Makefile -------------------------------------------------------------------------------- /depends/ate-pairing/test/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/bench.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/bench/bench.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/bench/bench.vcproj -------------------------------------------------------------------------------- /depends/ate-pairing/test/bn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/bn.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/calc-multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/calc-multi.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/java_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/java_api.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/loop_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/loop_test.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/minitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/minitest.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/sample.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/test_bn.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/test_bn.vcproj -------------------------------------------------------------------------------- /depends/ate-pairing/test/test_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/test_point.hpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/test_zm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/test_zm.cpp -------------------------------------------------------------------------------- /depends/ate-pairing/test/test_zm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/test_zm.vcproj -------------------------------------------------------------------------------- /depends/ate-pairing/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/ate-pairing/test/util.h -------------------------------------------------------------------------------- /depends/gtest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/.gitignore -------------------------------------------------------------------------------- /depends/gtest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/.travis.yml -------------------------------------------------------------------------------- /depends/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /depends/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/README.md -------------------------------------------------------------------------------- /depends/gtest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/appveyor.yml -------------------------------------------------------------------------------- /depends/gtest/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/CHANGES -------------------------------------------------------------------------------- /depends/gtest/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /depends/gtest/googlemock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/CONTRIBUTORS -------------------------------------------------------------------------------- /depends/gtest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/LICENSE -------------------------------------------------------------------------------- /depends/gtest/googlemock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/Makefile.am -------------------------------------------------------------------------------- /depends/gtest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/README.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/gtest/googlemock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/configure.ac -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/CheatSheet.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/CookBook.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/DesignDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/DesignDoc.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/DevGuide.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/ForDummies.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/KnownIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/KnownIssues.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_5/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_5/CheatSheet.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_5/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_5/CookBook.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_5/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_5/Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_5/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_5/ForDummies.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_6/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_6/CheatSheet.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_6/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_6/CookBook.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_6/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_6/Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_6/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_6/ForDummies.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_7/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_7/CheatSheet.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_7/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_7/CookBook.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_7/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_7/Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/docs/v1_7/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/docs/v1_7/ForDummies.md -------------------------------------------------------------------------------- /depends/gtest/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /depends/gtest/googlemock/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/make/Makefile -------------------------------------------------------------------------------- /depends/gtest/googlemock/msvc/2005/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/msvc/2005/gmock.sln -------------------------------------------------------------------------------- /depends/gtest/googlemock/msvc/2005/gmock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/msvc/2005/gmock.vcproj -------------------------------------------------------------------------------- /depends/gtest/googlemock/msvc/2010/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/msvc/2010/gmock.sln -------------------------------------------------------------------------------- /depends/gtest/googlemock/msvc/2010/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/msvc/2010/gmock.vcxproj -------------------------------------------------------------------------------- /depends/gtest/googlemock/msvc/2015/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/msvc/2015/gmock.sln -------------------------------------------------------------------------------- /depends/gtest/googlemock/msvc/2015/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/msvc/2015/gmock.vcxproj -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/scripts/generator/LICENSE -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/scripts/generator/README -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/gmock-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/scripts/gmock-config.in -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/gmock_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/scripts/gmock_doctor.py -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/scripts/upload.py -------------------------------------------------------------------------------- /depends/gtest/googlemock/scripts/upload_gmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/scripts/upload_gmock.py -------------------------------------------------------------------------------- /depends/gtest/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_output_test.py -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /depends/gtest/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /depends/gtest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /depends/gtest/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/CHANGES -------------------------------------------------------------------------------- /depends/gtest/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /depends/gtest/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /depends/gtest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/LICENSE -------------------------------------------------------------------------------- /depends/gtest/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/Makefile.am -------------------------------------------------------------------------------- /depends/gtest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/README.md -------------------------------------------------------------------------------- /depends/gtest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/gtest/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /depends/gtest/googletest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /depends/gtest/googletest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /depends/gtest/googletest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /depends/gtest/googletest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/configure.ac -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/AdvancedGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/DevGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/FAQ.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/Primer.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/PumpManual.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/Samples.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_5_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_5_AdvancedGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_5_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_5_Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_5_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_5_FAQ.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_5_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_5_Primer.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_5_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_5_PumpManual.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_5_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_5_XcodeGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_AdvancedGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_FAQ.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_Primer.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_PumpManual.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_Samples.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_6_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_6_XcodeGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_AdvancedGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_Documentation.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_FAQ.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_Primer.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_PumpManual.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_Samples.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/V1_7_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/V1_7_XcodeGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/docs/XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/docs/XcodeGuide.md -------------------------------------------------------------------------------- /depends/gtest/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /depends/gtest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /depends/gtest/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /depends/gtest/googletest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /depends/gtest/googletest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/m4/gtest.m4 -------------------------------------------------------------------------------- /depends/gtest/googletest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/make/Makefile -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest.sln -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /depends/gtest/googletest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample1.h -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample2.h -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/samples/sample4.h -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/common.py -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/gtest-config.in -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/pump.py -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/release_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/release_docs.py -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/test/Makefile -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/upload.py -------------------------------------------------------------------------------- /depends/gtest/googletest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_color_test.py -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_output_test.py -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /depends/gtest/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/production.cc -------------------------------------------------------------------------------- /depends/gtest/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/test/production.h -------------------------------------------------------------------------------- /depends/gtest/googletest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /depends/gtest/googletest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/googletest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /depends/gtest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/gtest/travis.sh -------------------------------------------------------------------------------- /depends/libff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/.travis.yml -------------------------------------------------------------------------------- /depends/libff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/AUTHORS -------------------------------------------------------------------------------- /depends/libff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/LICENSE -------------------------------------------------------------------------------- /depends/libff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/README.md -------------------------------------------------------------------------------- /depends/libff/depends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/.gitignore -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/ate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/ate.sln -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/ate.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/ate.vsprops -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/common.mk -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/common.props -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/debug.props -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/include/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/include/bn.h -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/include/cybozu/readme.txt: -------------------------------------------------------------------------------- 1 | see 2 | https://github.com/herumi/cybozulib/ 3 | -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/include/zm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/include/zm.h -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/include/zm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/include/zm2.h -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/java/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/java/bn254_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/java/bn254_if.hpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/java/bn254_if.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/java/bn254_if.i -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/java/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/java/java.md -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/readme.md -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/release.props -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/release.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/release.vsprops -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/src/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/src/zm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/src/zm.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/src/zm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/src/zm2.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/.gitignore -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/bench.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/bn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/bn.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/java_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/java_api.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/minitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/minitest.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/sample.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/test_zm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/test_zm.cpp -------------------------------------------------------------------------------- /depends/libff/depends/ate-pairing/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/ate-pairing/test/util.h -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/avx_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/avx_type.hpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/b2hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/b2hex.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/gen_avx512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/gen_avx512.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/gen_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/gen_code.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/sortline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/sortline.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/gen/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/gen/update.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/readme.md -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/readme.txt -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/bf.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/bf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/bf.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/calc.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/calc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/calc.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/calc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/calc2.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/echo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/echo.bf -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/fizzbuzz.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/fizzbuzz.bf -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/hello.bf -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/jmp_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/jmp_table.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/memfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/memfunc.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/quantize.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/quantize.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/quantize.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/stackframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/stackframe.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/static_buf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/static_buf.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/test0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/test0.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/test0.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/test0.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/test_util.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/test_util.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/test_util.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/toyvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/toyvm.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/sample/toyvm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/sample/toyvm.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/6.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/Makefile -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/Makefile.win -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/a.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/address.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/bad_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/bad_address.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/cvt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/cvt_test.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/cybozu/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/cybozu/COPYRIGHT -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/cybozu/inttype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/cybozu/inttype.hpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/cybozu/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/cybozu/test.hpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/jmp.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/jmp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/jmp.sln -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/jmp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/jmp.vcproj -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/lib.h -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/lib_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/lib_min.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/lib_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/lib_run.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/lib_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/lib_test.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/make_512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/make_512.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/make_nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/make_nm.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/misc.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/mprotect_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/mprotect_test.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/nm_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/nm_frame.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/readme.txt -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/rip-label-imm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/rip-label-imm.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/sf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/sf_test.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/state.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/state.pptx -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_address.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_address.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_address.sh -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_all.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_avx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_avx.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_avx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_avx.sh -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_avx512.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_avx512.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_avx512.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_avx512.sh -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_avx_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_avx_all.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_jmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_jmp.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_misc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_misc.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_mmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_mmx.cpp -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_nm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_nm.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_nm.sh -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/test/test_nm_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/test/test_nm_all.bat -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/xbyak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/xbyak.sln -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/xbyak/xbyak_bin2hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/xbyak/xbyak_bin2hex.h -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/xbyak/xbyak_mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/xbyak/xbyak_mnemonic.h -------------------------------------------------------------------------------- /depends/libff/depends/xbyak/xbyak/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/depends/xbyak/xbyak/xbyak_util.h -------------------------------------------------------------------------------- /depends/libff/libff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libff/libff/algebra/curves/curve_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/curves/curve_utils.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/curves/curve_utils.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/curves/curve_utils.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/bigint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/bigint.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/bigint.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/bigint.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/field_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/field_utils.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/field_utils.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/field_utils.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp2.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp2.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp2.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp3.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp3.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp3.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp4.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp4.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp4.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp6_2over3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp6_2over3.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp6_2over3.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp6_2over3.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp6_3over2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp6_3over2.hpp -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp6_3over2.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp6_3over2.tcc -------------------------------------------------------------------------------- /depends/libff/libff/algebra/fields/fp_aux.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/algebra/fields/fp_aux.tcc -------------------------------------------------------------------------------- /depends/libff/libff/common/default_types/ec_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/default_types/ec_pp.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/double.cpp -------------------------------------------------------------------------------- /depends/libff/libff/common/double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/double.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/profiling.cpp -------------------------------------------------------------------------------- /depends/libff/libff/common/profiling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/profiling.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/rng.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/rng.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/rng.tcc -------------------------------------------------------------------------------- /depends/libff/libff/common/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/serialization.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/serialization.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/serialization.tcc -------------------------------------------------------------------------------- /depends/libff/libff/common/template_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/template_utils.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/utils.cpp -------------------------------------------------------------------------------- /depends/libff/libff/common/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/utils.hpp -------------------------------------------------------------------------------- /depends/libff/libff/common/utils.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libff/libff/common/utils.tcc -------------------------------------------------------------------------------- /depends/libfqfft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/.gitignore -------------------------------------------------------------------------------- /depends/libfqfft/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/.travis.yml -------------------------------------------------------------------------------- /depends/libfqfft/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/AUTHORS -------------------------------------------------------------------------------- /depends/libfqfft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/LICENSE -------------------------------------------------------------------------------- /depends/libfqfft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/README.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/.gitignore -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/ate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/ate.sln -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/ate.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/ate.vsprops -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/common.mk -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/common.props -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/debug.props -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/include/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/include/bn.h -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/include/cybozu/readme.txt: -------------------------------------------------------------------------------- 1 | see 2 | https://github.com/herumi/cybozulib/ 3 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/include/zm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/include/zm.h -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/include/zm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/include/zm2.h -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/java/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/java/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/java/java.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/readme.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/release.props -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/src/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/src/zm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/src/zm.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/src/zm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/src/zm2.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/test/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/test/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/test/bench.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/test/bn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/test/bn.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/ate-pairing/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/ate-pairing/test/util.h -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/.gitignore -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/.travis.yml -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/README.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/appveyor.yml -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/googlemock/CHANGES -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/googlemock/LICENSE -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/googlemock/README.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/googletest/CHANGES -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/googletest/LICENSE -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/googletest/README.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/gtest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/gtest/travis.sh -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/.travis.yml -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/AUTHORS -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/LICENSE -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/README.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/depends/ate-pairing/include/cybozu/readme.txt: -------------------------------------------------------------------------------- 1 | see 2 | https://github.com/herumi/cybozulib/ 3 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/depends/ate-pairing/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/libff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/libff/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/libff/common/rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/libff/common/rng.hpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/libff/libff/common/rng.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/libff/libff/common/rng.tcc -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/avx_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/avx_type.hpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/b2hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/b2hex.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/gen_avx512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/gen_avx512.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/gen_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/gen_code.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/sortline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/sortline.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/gen/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/gen/update.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/readme.md -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/readme.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/bf.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/bf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/bf.vcproj -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/calc.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/calc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/calc.vcproj -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/calc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/calc2.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/echo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/echo.bf -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/fizzbuzz.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/fizzbuzz.bf -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/hello.bf -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/jmp_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/jmp_table.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/memfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/memfunc.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/quantize.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/test0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/test0.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/test0.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/test0.vcproj -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/test_util.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/toyvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/toyvm.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/sample/toyvm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/sample/toyvm.vcproj -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/6.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/Makefile -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/Makefile.win -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/a.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/address.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/bad_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/bad_address.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/cvt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/cvt_test.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/cybozu/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/cybozu/test.hpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/jmp.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/jmp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/jmp.sln -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/jmp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/jmp.vcproj -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/lib.h -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/lib_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/lib_min.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/lib_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/lib_run.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/lib_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/lib_test.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/make_512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/make_512.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/make_nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/make_nm.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/misc.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/nm_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/nm_frame.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/readme.txt -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/sf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/sf_test.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/state.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/state.pptx -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_address.sh -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_all.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_avx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_avx.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_avx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_avx.sh -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_avx512.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_avx512.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_avx512.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_avx512.sh -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_jmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_jmp.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_misc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_misc.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_mmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_mmx.cpp -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_nm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_nm.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_nm.sh -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/test/test_nm_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/test/test_nm_all.bat -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/xbyak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/xbyak.sln -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /depends/libfqfft/depends/xbyak/xbyak/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/depends/xbyak/xbyak/xbyak_util.h -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/libfqfft/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/03-03_03:44/memory.ps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:36/arithmetic-fft-1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:36/arithmetic-fft-2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:36/arithmetic-fft-4.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:36/arithmetic-fft-8.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:49/arithmetic-fft-1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:49/arithmetic-fft-2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:49/arithmetic-fft-4.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:49/arithmetic-fft-8.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:52/arithmetic-fft-1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:52/arithmetic-fft-2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:52/arithmetic-fft-4.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/memory/05-29_12:52/arithmetic-fft-8.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/operators/05-29_12:36/arithmetic-fft.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/operators/05-29_12:49/arithmetic-fft.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/operators/05-29_12:52/arithmetic-fft.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:36/arithmetic-fft-1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:36/arithmetic-fft-2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:36/arithmetic-fft-4.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:36/arithmetic-fft-8.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:49/arithmetic-fft-1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:49/arithmetic-fft-2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:49/arithmetic-fft-4.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/profiling/logs/runtime/05-29_12:49/arithmetic-fft-8.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/tests/init_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/libfqfft/tests/init_test.cpp -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/tools/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/libfqfft/tools/exceptions.hpp -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/tools/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/libfqfft/tools/serialization.hpp -------------------------------------------------------------------------------- /depends/libfqfft/libfqfft/tools/serialization.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/libfqfft/tools/serialization.tcc -------------------------------------------------------------------------------- /depends/libfqfft/tutorials/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libfqfft/tutorials/CMakeLists.txt -------------------------------------------------------------------------------- /depends/libsnark-supercop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libsnark-supercop/README.md -------------------------------------------------------------------------------- /depends/libsnark-supercop/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libsnark-supercop/do -------------------------------------------------------------------------------- /depends/libsnark-supercop/include/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libsnark-supercop/include/crypto_sign.h -------------------------------------------------------------------------------- /depends/libsnark-supercop/include/crypto_verify_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libsnark-supercop/include/crypto_verify_8.h -------------------------------------------------------------------------------- /depends/libsnark-supercop/include/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libsnark-supercop/include/randombytes.h -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_core/aes128encrypt/openssl/implementors: -------------------------------------------------------------------------------- 1 | Daniel J. Bernstein (wrapper around OpenSSL) 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_hash/sha256/sphlib/implementors: -------------------------------------------------------------------------------- 1 | Thomas Pornin 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_hash/sha512/openssl/implementors: -------------------------------------------------------------------------------- 1 | Daniel J. Bernstein (wrapper around OpenSSL) 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_sign/ed25519/amd64-51-30k/architectures: -------------------------------------------------------------------------------- 1 | amd64 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_sign/ed25519/amd64-51-30k/implementors: -------------------------------------------------------------------------------- 1 | Daniel J. Bernstein 2 | Niels Duif 3 | Tanja Lange 4 | lead: Peter Schwabe 5 | Bo-Yin Yang 6 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_verify/16/ref/api.h: -------------------------------------------------------------------------------- 1 | #define CRYPTO_BYTES 16 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_verify/32/ref/api.h: -------------------------------------------------------------------------------- 1 | #define CRYPTO_BYTES 32 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/crypto_verify/8/ref/api.h: -------------------------------------------------------------------------------- 1 | #define CRYPTO_BYTES 8 2 | -------------------------------------------------------------------------------- /depends/libsnark-supercop/src/randombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/libsnark-supercop/src/randombytes.c -------------------------------------------------------------------------------- /depends/libsnark-supercop/version: -------------------------------------------------------------------------------- 1 | 20141014 2 | -------------------------------------------------------------------------------- /depends/xbyak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/CMakeLists.txt -------------------------------------------------------------------------------- /depends/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /depends/xbyak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/Makefile -------------------------------------------------------------------------------- /depends/xbyak/gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/Makefile -------------------------------------------------------------------------------- /depends/xbyak/gen/avx_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/avx_type.hpp -------------------------------------------------------------------------------- /depends/xbyak/gen/b2hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/b2hex.cpp -------------------------------------------------------------------------------- /depends/xbyak/gen/gen_avx512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/gen_avx512.cpp -------------------------------------------------------------------------------- /depends/xbyak/gen/gen_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/gen_code.cpp -------------------------------------------------------------------------------- /depends/xbyak/gen/sortline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/sortline.cpp -------------------------------------------------------------------------------- /depends/xbyak/gen/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/gen/update.bat -------------------------------------------------------------------------------- /depends/xbyak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/readme.md -------------------------------------------------------------------------------- /depends/xbyak/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/readme.txt -------------------------------------------------------------------------------- /depends/xbyak/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/Makefile -------------------------------------------------------------------------------- /depends/xbyak/sample/bf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/bf.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/bf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/bf.vcproj -------------------------------------------------------------------------------- /depends/xbyak/sample/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/calc.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/calc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/calc.vcproj -------------------------------------------------------------------------------- /depends/xbyak/sample/calc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/calc2.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/echo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/echo.bf -------------------------------------------------------------------------------- /depends/xbyak/sample/fizzbuzz.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/fizzbuzz.bf -------------------------------------------------------------------------------- /depends/xbyak/sample/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/hello.bf -------------------------------------------------------------------------------- /depends/xbyak/sample/jmp_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/jmp_table.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/memfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/memfunc.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/quantize.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/quantize.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/quantize.vcproj -------------------------------------------------------------------------------- /depends/xbyak/sample/stackframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/stackframe.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/static_buf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/static_buf.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/test0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/test0.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/test0.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/test0.vcproj -------------------------------------------------------------------------------- /depends/xbyak/sample/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/test_util.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/test_util.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/test_util.vcproj -------------------------------------------------------------------------------- /depends/xbyak/sample/toyvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/toyvm.cpp -------------------------------------------------------------------------------- /depends/xbyak/sample/toyvm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/sample/toyvm.vcproj -------------------------------------------------------------------------------- /depends/xbyak/test/6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/6.bat -------------------------------------------------------------------------------- /depends/xbyak/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/Makefile -------------------------------------------------------------------------------- /depends/xbyak/test/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/Makefile.win -------------------------------------------------------------------------------- /depends/xbyak/test/a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/a.bat -------------------------------------------------------------------------------- /depends/xbyak/test/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/address.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/bad_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/bad_address.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/cvt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/cvt_test.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/cybozu/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/cybozu/COPYRIGHT -------------------------------------------------------------------------------- /depends/xbyak/test/cybozu/inttype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/cybozu/inttype.hpp -------------------------------------------------------------------------------- /depends/xbyak/test/cybozu/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/cybozu/test.hpp -------------------------------------------------------------------------------- /depends/xbyak/test/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/jmp.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/jmp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/jmp.sln -------------------------------------------------------------------------------- /depends/xbyak/test/jmp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/jmp.vcproj -------------------------------------------------------------------------------- /depends/xbyak/test/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/lib.h -------------------------------------------------------------------------------- /depends/xbyak/test/lib_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/lib_min.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/lib_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/lib_run.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/lib_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/lib_test.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/make_512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/make_512.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/make_nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/make_nm.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/misc.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/mprotect_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/mprotect_test.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/nm_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/nm_frame.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/normalize_prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/normalize_prefix.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/readme.txt -------------------------------------------------------------------------------- /depends/xbyak/test/rip-label-imm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/rip-label-imm.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/sf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/sf_test.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/state.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/state.pptx -------------------------------------------------------------------------------- /depends/xbyak/test/test_address.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_address.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_address.sh -------------------------------------------------------------------------------- /depends/xbyak/test/test_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_all.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_avx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_avx.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_avx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_avx.sh -------------------------------------------------------------------------------- /depends/xbyak/test/test_avx512.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_avx512.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_avx512.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_avx512.sh -------------------------------------------------------------------------------- /depends/xbyak/test/test_avx_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_avx_all.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_jmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_jmp.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_misc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_misc.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_mmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_mmx.cpp -------------------------------------------------------------------------------- /depends/xbyak/test/test_nm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_nm.bat -------------------------------------------------------------------------------- /depends/xbyak/test/test_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_nm.sh -------------------------------------------------------------------------------- /depends/xbyak/test/test_nm_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/test/test_nm_all.bat -------------------------------------------------------------------------------- /depends/xbyak/xbyak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/xbyak.sln -------------------------------------------------------------------------------- /depends/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /depends/xbyak/xbyak/xbyak_bin2hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/xbyak/xbyak_bin2hex.h -------------------------------------------------------------------------------- /depends/xbyak/xbyak/xbyak_mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/xbyak/xbyak_mnemonic.h -------------------------------------------------------------------------------- /depends/xbyak/xbyak/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/depends/xbyak/xbyak/xbyak_util.h -------------------------------------------------------------------------------- /doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/doxygen.conf -------------------------------------------------------------------------------- /libsnark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/CMakeLists.txt -------------------------------------------------------------------------------- /libsnark/caml/caml_bn128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_bn128.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_bn128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_bn128.hpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt4.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt4.hpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt4753.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt4753.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt4753.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt4753.hpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt4753_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt4753_specific.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt4_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt4_specific.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt6.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt6.hpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt6753.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt6753.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt6753.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt6753.hpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt6753_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt6753_specific.cpp -------------------------------------------------------------------------------- /libsnark/caml/caml_mnt6_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/caml_mnt6_specific.cpp -------------------------------------------------------------------------------- /libsnark/caml/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/common.cpp -------------------------------------------------------------------------------- /libsnark/caml/copy_over.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/caml/copy_over.sh -------------------------------------------------------------------------------- /libsnark/common/data_structures/merkle_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/merkle_tree.hpp -------------------------------------------------------------------------------- /libsnark/common/data_structures/merkle_tree.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/merkle_tree.tcc -------------------------------------------------------------------------------- /libsnark/common/data_structures/set_commitment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/set_commitment.cpp -------------------------------------------------------------------------------- /libsnark/common/data_structures/set_commitment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/set_commitment.hpp -------------------------------------------------------------------------------- /libsnark/common/data_structures/set_commitment.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/set_commitment.tcc -------------------------------------------------------------------------------- /libsnark/common/data_structures/sparse_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/sparse_vector.hpp -------------------------------------------------------------------------------- /libsnark/common/data_structures/sparse_vector.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/data_structures/sparse_vector.tcc -------------------------------------------------------------------------------- /libsnark/common/default_types/bacs_ppzksnark_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/bacs_ppzksnark_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/default_types/r1cs_ppzkpcd_pp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/r1cs_ppzkpcd_pp.cpp -------------------------------------------------------------------------------- /libsnark/common/default_types/r1cs_ppzkpcd_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/r1cs_ppzkpcd_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/default_types/r1cs_ppzksnark_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/r1cs_ppzksnark_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/default_types/ram_ppzksnark_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/ram_ppzksnark_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/default_types/ram_zksnark_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/ram_zksnark_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/default_types/tbcs_ppzksnark_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/tbcs_ppzksnark_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/default_types/uscs_ppzksnark_pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/default_types/uscs_ppzksnark_pp.hpp -------------------------------------------------------------------------------- /libsnark/common/libsnark_serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/common/libsnark_serialization.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/constraint_profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/constraint_profiling.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/constraint_profiling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/constraint_profiling.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/examples/simple_example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/examples/simple_example.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/examples/simple_example.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/examples/simple_example.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadget.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadget.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadget.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/basic_gadgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/basic_gadgets.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/basic_gadgets.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/basic_gadgets.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/fields/fp2_gadgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/fields/fp2_gadgets.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/fields/fp2_gadgets.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/fields/fp2_gadgets.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/fields/fp3_gadgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/fields/fp3_gadgets.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/fields/fp3_gadgets.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/fields/fp3_gadgets.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/gadget_from_r1cs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/gadget_from_r1cs.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/gadget_from_r1cs.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/gadget_from_r1cs.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/hashes/hash_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/hashes/hash_io.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/gadgets/hashes/hash_io.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/gadgets/hashes/hash_io.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/pb_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/pb_variable.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/pb_variable.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/pb_variable.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/protoboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/protoboard.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib1/protoboard.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/protoboard.tcc -------------------------------------------------------------------------------- /libsnark/gadgetlib1/tests/gadgetlib1_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib1/tests/gadgetlib1_test.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/adapters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/adapters.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/adapters.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/constraint.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/constraint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/constraint.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/examples/simple_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/examples/simple_example.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/examples/simple_example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/examples/simple_example.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/examples/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/examples/tutorial.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/gadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/gadget.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/gadget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/gadget.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/gadgetMacros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/gadgetMacros.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/infrastructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/infrastructure.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/infrastructure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/infrastructure.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/integration.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/integration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/integration.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/pp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/pp.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/pp.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/protoboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/protoboard.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/protoboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/protoboard.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/adapters_UTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/adapters_UTEST.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/constraint_UTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/constraint_UTEST.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/gadget_UTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/gadget_UTEST.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/gadgetlib2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/gadgetlib2_test.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/integration_UTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/integration_UTEST.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/protoboard_UTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/protoboard_UTEST.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/tests/variable_UTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/tests/variable_UTEST.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/variable.cpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/variable.hpp -------------------------------------------------------------------------------- /libsnark/gadgetlib2/variable_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/gadgetlib2/variable_operators.hpp -------------------------------------------------------------------------------- /libsnark/generate_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/generate_parameters.cpp -------------------------------------------------------------------------------- /libsnark/knowledge_commitment/kc_multiexp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/knowledge_commitment/kc_multiexp.hpp -------------------------------------------------------------------------------- /libsnark/knowledge_commitment/kc_multiexp.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/knowledge_commitment/kc_multiexp.tcc -------------------------------------------------------------------------------- /libsnark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/main.cpp -------------------------------------------------------------------------------- /libsnark/misc/pedersen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/misc/pedersen.cpp -------------------------------------------------------------------------------- /libsnark/prover_reference_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/prover_reference_functions.cpp -------------------------------------------------------------------------------- /libsnark/reductions/r1cs_to_qap/r1cs_to_qap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/r1cs_to_qap/r1cs_to_qap.hpp -------------------------------------------------------------------------------- /libsnark/reductions/r1cs_to_qap/r1cs_to_qap.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/r1cs_to_qap/r1cs_to_qap.tcc -------------------------------------------------------------------------------- /libsnark/reductions/r1cs_to_sap/r1cs_to_sap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/r1cs_to_sap/r1cs_to_sap.hpp -------------------------------------------------------------------------------- /libsnark/reductions/r1cs_to_sap/r1cs_to_sap.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/r1cs_to_sap/r1cs_to_sap.tcc -------------------------------------------------------------------------------- /libsnark/reductions/ram_to_r1cs/ram_to_r1cs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/ram_to_r1cs/ram_to_r1cs.hpp -------------------------------------------------------------------------------- /libsnark/reductions/ram_to_r1cs/ram_to_r1cs.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/ram_to_r1cs/ram_to_r1cs.tcc -------------------------------------------------------------------------------- /libsnark/reductions/uscs_to_ssp/uscs_to_ssp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/uscs_to_ssp/uscs_to_ssp.hpp -------------------------------------------------------------------------------- /libsnark/reductions/uscs_to_ssp/uscs_to_ssp.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/reductions/uscs_to_ssp/uscs_to_ssp.tcc -------------------------------------------------------------------------------- /libsnark/relations/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/relations/variable.hpp -------------------------------------------------------------------------------- /libsnark/relations/variable.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/relations/variable.tcc -------------------------------------------------------------------------------- /libsnark/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/serialization.hpp -------------------------------------------------------------------------------- /libsnark/zk_proof_systems/ppzksnark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinaProtocol/snark-challenge-prover-reference/HEAD/libsnark/zk_proof_systems/ppzksnark/README.md --------------------------------------------------------------------------------