From b639a4894cdeab467c1bf874e37f2269b9f56237 Mon Sep 17 00:00:00 2001 From: nkaskov Date: Wed, 15 Nov 2023 15:30:29 +0000 Subject: [PATCH 1/3] Dependency from blueprint and transpiler removed. --- .gitmodules | 6 ------ CMakeLists.txt | 3 --- bin/proof-generator/CMakeLists.txt | 3 --- bin/proof-generator/include/nil/proof-generator/prover.hpp | 5 ----- libs/blueprint | 1 - libs/transpiler | 1 - 6 files changed, 19 deletions(-) delete mode 160000 libs/blueprint delete mode 160000 libs/transpiler diff --git a/.gitmodules b/.gitmodules index 8556eb69..badf5d7f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,9 +13,3 @@ [submodule "libs/application"] path = libs/application url = ../../NilFoundation/application.git -[submodule "libs/blueprint"] - path = libs/blueprint - url = ../../NilFoundation/zkllvm-blueprint.git -[submodule "libs/transpiler"] - path = libs/transpiler - url = ../../NilFoundation/zkllvm-transpiler.git diff --git a/CMakeLists.txt b/CMakeLists.txt index bf9dd938..dfd1bf46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,6 +49,3 @@ add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/libs/crypto3") add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/libs/module") add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/libs/plugin") add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/libs/application") - -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/libs/blueprint") -add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/libs/transpiler") diff --git a/bin/proof-generator/CMakeLists.txt b/bin/proof-generator/CMakeLists.txt index f59adbc2..1f112822 100644 --- a/bin/proof-generator/CMakeLists.txt +++ b/bin/proof-generator/CMakeLists.txt @@ -88,9 +88,6 @@ target_link_libraries(${CURRENT_PROJECT_NAME} crypto3::random crypto3::zk - crypto3::blueprint - crypto3::transpiler - marshalling::core marshalling::crypto3_algebra marshalling::crypto3_multiprecision diff --git a/bin/proof-generator/include/nil/proof-generator/prover.hpp b/bin/proof-generator/include/nil/proof-generator/prover.hpp index 717054bd..b786f7ab 100644 --- a/bin/proof-generator/include/nil/proof-generator/prover.hpp +++ b/bin/proof-generator/include/nil/proof-generator/prover.hpp @@ -47,11 +47,6 @@ #include #include -#include -#include - -#include - #include diff --git a/libs/blueprint b/libs/blueprint deleted file mode 160000 index 41cb11e3..00000000 --- a/libs/blueprint +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 41cb11e367096c4f0edd4f3cf4dc7a1fad93a2ef diff --git a/libs/transpiler b/libs/transpiler deleted file mode 160000 index a912c3a3..00000000 --- a/libs/transpiler +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a912c3a39594f0e1a39fd605866db86a68a423f9 From bd6add7951604f85a5a27b02cb1bde315179c193 Mon Sep 17 00:00:00 2001 From: nkaskov Date: Wed, 15 Nov 2023 15:36:16 +0000 Subject: [PATCH 2/3] Lambda value updated from 2 to 9. --- bin/proof-generator/include/nil/proof-generator/prover.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/proof-generator/include/nil/proof-generator/prover.hpp b/bin/proof-generator/include/nil/proof-generator/prover.hpp index b786f7ab..b84b9c48 100644 --- a/bin/proof-generator/include/nil/proof-generator/prover.hpp +++ b/bin/proof-generator/include/nil/proof-generator/prover.hpp @@ -197,7 +197,7 @@ namespace nil { table_description.rows_amount = assignment_table.rows_amount(); } - const std::size_t Lambda = 2; + const std::size_t Lambda = 9; using Hash = nil::crypto3::hashes::keccak_1600<256>; using circuit_params = nil::crypto3::zk::snark::placeholder_circuit_params< BlueprintFieldType, ArithmetizationParams From 9565c33003faffa6cb8d7e6186b2684416ec9f62 Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Wed, 15 Nov 2023 20:20:55 +0200 Subject: [PATCH 3/3] release: 0.1.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6c6aa7cb..6da28dde 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +0.1.1 \ No newline at end of file