Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronize with parallel-crypto3 sources #331

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion libs/containers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ target_include_directories(${CMAKE_WORKSPACE_NAME}_${CURRENT_PROJECT_NAME} INTER

cm_deploy(TARGETS ${CMAKE_WORKSPACE_NAME}_${CURRENT_PROJECT_NAME} INCLUDE include NAMESPACE ${CMAKE_WORKSPACE_NAME}::)

include(CMTest)
cm_add_test_subdirectory(test)

if (BUILD_EXAMPLES)
Expand Down
5 changes: 3 additions & 2 deletions libs/marshalling/zk/test/kzg_commitment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
// SOFTWARE.
//---------------------------------------------------------------------------//

#include "nil/crypto3/zk/commitments/batched_commitment.hpp"
#define BOOST_TEST_MODULE crypto3_marshalling_kzg_commitment_test

#include <boost/test/unit_test.hpp>
Expand Down Expand Up @@ -53,7 +52,8 @@
#include <nil/crypto3/algebra/fields/arithmetic_params/mnt6.hpp>

#include <nil/crypto3/algebra/curves/bls12.hpp>
#include <nil/crypto3/algebra/pairing/bls12.hpp>
#include <nil/crypto3/algebra/pairing/bls12.hpp>
#include <nil/crypto3/algebra/fields/arithmetic_params/bls12.hpp>

/*
#include <nil/crypto3/algebra/curves/alt_bn128.hpp>
Expand All @@ -75,6 +75,7 @@
#include <nil/crypto3/zk/commitments/polynomial/kzg.hpp>
#include <nil/crypto3/zk/commitments/polynomial/kzg_v2.hpp>
#include <nil/crypto3/marshalling/zk/types/commitments/kzg.hpp>
#include <nil/crypto3/zk/commitments/batched_commitment.hpp>

#include <nil/crypto3/zk/snark/arithmetization/plonk/params.hpp>
#include <nil/crypto3/zk/snark/systems/plonk/placeholder/params.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
#ifndef CRYPTO3_MATH_MAKE_EVALUATION_DOMAIN_HPP
#define CRYPTO3_MATH_MAKE_EVALUATION_DOMAIN_HPP

#include <nil/crypto3/algebra/fields/arithmetic_params/bls12.hpp>

#include <nil/crypto3/math/domains/evaluation_domain.hpp>
#include <nil/crypto3/math/domains/arithmetic_sequence_domain.hpp>
#include <nil/crypto3/math/domains/basic_radix2_domain.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@

#include <vector>

#include <nil/crypto3/algebra/fields/arithmetic_params/bls12.hpp>

#include <nil/crypto3/math/detail/field_utils.hpp>

#include <nil/crypto3/math/domains/evaluation_domain.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@

#include <vector>

#include <nil/crypto3/algebra/fields/arithmetic_params/bls12.hpp>

#include <nil/crypto3/math/domains/evaluation_domain.hpp>
#include <nil/crypto3/math/domains/basic_radix2_domain.hpp>
#include <nil/crypto3/math/domains/detail/basic_radix2_domain_aux.hpp>
Expand Down
1 change: 0 additions & 1 deletion libs/math/include/nil/crypto3/math/polynomial/basic_operations.hpp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ namespace nil {
*/
template<typename Range>
void division(Range &q, Range &r, const Range &a, const Range &b) {

typedef
typename std::iterator_traits<decltype(std::begin(std::declval<Range>()))>::value_type value_type;

Expand Down
Empty file modified libs/math/include/nil/crypto3/math/polynomial/basis_change.hpp
100755 → 100644
Empty file.
Empty file modified libs/math/include/nil/crypto3/math/polynomial/evaluate.hpp
100755 → 100644
Empty file.
Loading
Loading