Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Updated submodules with warning fixes. #142

Merged
merged 2 commits into from
Feb 8, 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
2 changes: 1 addition & 1 deletion libs/marshalling/zk
Submodule zk updated 34 files
+13 −13 include/nil/crypto3/marshalling/math/types/expression.hpp
+1 −1 include/nil/crypto3/marshalling/math/types/term.hpp
+6 −8 include/nil/crypto3/marshalling/zk/types/commitments/commitment_params.hpp
+3 −5 include/nil/crypto3/marshalling/zk/types/commitments/eval_storage.hpp
+2 −4 include/nil/crypto3/marshalling/zk/types/commitments/fri.hpp
+3 −4 include/nil/crypto3/marshalling/zk/types/commitments/lpc.hpp
+0 −4 include/nil/crypto3/marshalling/zk/types/commitments/powers_of_tau/accumulator.hpp
+0 −2 include/nil/crypto3/marshalling/zk/types/commitments/proof_of_knowledge.hpp
+0 −2 include/nil/crypto3/marshalling/zk/types/commitments/r1cs_gg_ppzksnark_mpc/public_key.hpp
+9 −13 include/nil/crypto3/marshalling/zk/types/placeholder/common_data.hpp
+1 −3 include/nil/crypto3/marshalling/zk/types/placeholder/proof.hpp
+2 −3 include/nil/crypto3/marshalling/zk/types/placeholder/transcript_initialization_context.hpp
+2 −2 include/nil/crypto3/marshalling/zk/types/plonk/constraint.hpp
+1 −4 include/nil/crypto3/marshalling/zk/types/plonk/constraint_system.hpp
+6 −8 include/nil/crypto3/marshalling/zk/types/plonk/copy_constraint.hpp
+4 −4 include/nil/crypto3/marshalling/zk/types/plonk/gate.hpp
+2 −2 include/nil/crypto3/marshalling/zk/types/plonk/lookup_constraint.hpp
+4 −4 include/nil/crypto3/marshalling/zk/types/plonk/lookup_gate.hpp
+4 −4 include/nil/crypto3/marshalling/zk/types/plonk/lookup_table.hpp
+0 −4 include/nil/crypto3/marshalling/zk/types/r1cs_gg_ppzksnark/r1cs.hpp
+0 −1 test/accumulation_vector.cpp
+0 −11 test/detail/circuits.hpp
+14 −17 test/fri_commitment.cpp
+13 −14 test/lpc_commitment.cpp
+4 −3 test/merkle_proof.cpp
+7 −14 test/placeholder_common_data.cpp
+6 −13 test/placeholder_proof.cpp
+2 −2 test/plonk_assignment_table.cpp
+2 −7 test/plonk_constraint_system.cpp
+6 −12 test/plonk_gates.cpp
+2 −1 test/r1cs_gg_ppzksnark_primary_input.cpp
+2 −2 test/r1cs_gg_ppzksnark_proof.cpp
+4 −7 test/r1cs_gg_ppzksnark_verification_key.cpp
+3 −2 test/sparse_vector.cpp
2 changes: 1 addition & 1 deletion libs/zk
Submodule zk updated 42 files
+3 −1 include/nil/crypto3/zk/commitments/batched_commitment.hpp
+3 −5 include/nil/crypto3/zk/commitments/detail/polynomial/basic_fri.hpp
+0 −2 include/nil/crypto3/zk/commitments/detail/polynomial/fold_polynomial.hpp
+0 −2 include/nil/crypto3/zk/commitments/polynomial/fri.hpp
+0 −1 include/nil/crypto3/zk/commitments/polynomial/knowledge_commitment_multiexp.hpp
+4 −6 include/nil/crypto3/zk/commitments/polynomial/kzg.hpp
+0 −2 include/nil/crypto3/zk/commitments/polynomial/lpc.hpp
+1 −1 include/nil/crypto3/zk/commitments/polynomial/powers_of_tau.hpp
+2 −1 include/nil/crypto3/zk/commitments/polynomial/proof_of_knowledge.hpp
+2 −0 include/nil/crypto3/zk/math/expression.hpp
+1 −1 include/nil/crypto3/zk/math/linear_combination.hpp
+2 −2 include/nil/crypto3/zk/math/linear_variable.hpp
+2 −2 include/nil/crypto3/zk/snark/arithmetization/arithmetic_programs/qap.hpp
+5 −3 include/nil/crypto3/zk/snark/arithmetization/plonk/assignment.hpp
+10 −8 include/nil/crypto3/zk/snark/arithmetization/plonk/constraint.hpp
+2 −0 include/nil/crypto3/zk/snark/arithmetization/plonk/constraint_system.hpp
+2 −2 include/nil/crypto3/zk/snark/arithmetization/plonk/gate.hpp
+1 −1 include/nil/crypto3/zk/snark/arithmetization/plonk/lookup_gate.hpp
+1 −1 include/nil/crypto3/zk/snark/arithmetization/plonk/lookup_table.hpp
+0 −2 include/nil/crypto3/zk/snark/arithmetization/plonk/lookup_table_definition.hpp
+1 −1 include/nil/crypto3/zk/snark/arithmetization/plonk/padding.hpp
+4 −4 include/nil/crypto3/zk/snark/arithmetization/plonk/variable.hpp
+2 −2 include/nil/crypto3/zk/snark/routing/as_waksman.hpp
+6 −9 include/nil/crypto3/zk/snark/systems/plonk/placeholder/detail/transcript_initialization_context.hpp
+1 −1 include/nil/crypto3/zk/snark/systems/plonk/placeholder/lookup_argument.hpp
+2 −1 include/nil/crypto3/zk/snark/systems/plonk/placeholder/params.hpp
+6 −6 include/nil/crypto3/zk/snark/systems/plonk/placeholder/preprocessor.hpp
+2 −3 include/nil/crypto3/zk/snark/systems/plonk/placeholder/prover.hpp
+0 −3 include/nil/crypto3/zk/snark/systems/plonk/placeholder/verifier.hpp
+2 −1 include/nil/crypto3/zk/snark/systems/ppzksnark/r1cs_gg_ppzksnark/detail/basic_policy.hpp
+0 −1 include/nil/crypto3/zk/snark/systems/ppzksnark/r1cs_gg_ppzksnark/ipp2/prover.hpp
+1 −1 include/nil/crypto3/zk/snark/systems/ppzksnark/r1cs_gg_ppzksnark/ipp2/verifier.hpp
+0 −1 include/nil/crypto3/zk/transcript/fiat_shamir.hpp
+1 −0 test/CMakeLists.txt
+3 −6 test/commitment/fri.cpp
+28 −44 test/commitment/kzg.cpp
+4 −13 test/commitment/lpc.cpp
+24 −36 test/commitment/lpc_performance.cpp
+0 −1 test/commitment/powers_of_tau.cpp
+0 −3 test/commitment/r1cs_gg_ppzksnark_mpc.cpp
+0 −12 test/systems/plonk/placeholder/circuits.hpp
+5 −9 test/systems/plonk/placeholder/placeholder.cpp
Loading