Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
ecc.hpp
Go to the documentation of this file.
1// AUTOGENERATED FILE
2#pragma once
3
4#include <string_view>
5
10
11namespace bb::avm2 {
12
13template <typename FF_> class eccImpl {
14 public:
15 using FF = FF_;
16
17 static constexpr std::array<size_t, 20> SUBRELATION_PARTIAL_LENGTHS = { 3, 3, 3, 3, 3, 3, 3, 3, 5, 3,
18 5, 3, 3, 5, 6, 6, 5, 6, 6, 3 };
19
20 template <typename AllEntities> inline static bool skip(const AllEntities& in)
21 {
22 using C = ColumnAndShifts;
23
24 return (in.get(C::ecc_sel)).is_zero();
25 }
26
27 template <typename ContainerOverSubrelations, typename AllEntities>
28 void static accumulate(ContainerOverSubrelations& evals,
29 const AllEntities& in,
30 [[maybe_unused]] const RelationParameters<FF>&,
31 [[maybe_unused]] const FF& scaling_factor);
32};
33
34template <typename FF> class ecc : public Relation<eccImpl<FF>> {
35 public:
36 static constexpr const std::string_view NAME = "ecc";
37
38 // Subrelation indices constants, to be used in tests.
39 static constexpr size_t SR_OP_CHECK = 3;
40 static constexpr size_t SR_X_MATCH = 8;
41 static constexpr size_t SR_Y_MATCH = 10;
42 static constexpr size_t SR_DOUBLE_PRED = 11;
43 static constexpr size_t SR_COMPUTED_LAMBDA = 14;
44 static constexpr size_t SR_INFINITY_RESULT = 16;
45 static constexpr size_t SR_OUTPUT_X_COORD = 17;
46 static constexpr size_t SR_OUTPUT_Y_COORD = 18;
47 static constexpr size_t SR_OUTPUT_INF_FLAG = 19;
48
49 static std::string get_subrelation_label(size_t index)
50 {
51 switch (index) {
52 case SR_OP_CHECK:
53 return "OP_CHECK";
54 case SR_X_MATCH:
55 return "X_MATCH";
56 case SR_Y_MATCH:
57 return "Y_MATCH";
58 case SR_DOUBLE_PRED:
59 return "DOUBLE_PRED";
61 return "COMPUTED_LAMBDA";
63 return "INFINITY_RESULT";
65 return "OUTPUT_X_COORD";
67 return "OUTPUT_Y_COORD";
69 return "OUTPUT_INF_FLAG";
70 }
71 return std::to_string(index);
72 }
73};
74
75} // namespace bb::avm2
A wrapper for Relations to expose methods used by the Sumcheck prover or verifier to add the contribu...
static constexpr size_t SR_OUTPUT_X_COORD
Definition ecc.hpp:45
static std::string get_subrelation_label(size_t index)
Definition ecc.hpp:49
static constexpr size_t SR_OUTPUT_Y_COORD
Definition ecc.hpp:46
static constexpr const std::string_view NAME
Definition ecc.hpp:36
static constexpr size_t SR_COMPUTED_LAMBDA
Definition ecc.hpp:43
static constexpr size_t SR_Y_MATCH
Definition ecc.hpp:41
static constexpr size_t SR_INFINITY_RESULT
Definition ecc.hpp:44
static constexpr size_t SR_DOUBLE_PRED
Definition ecc.hpp:42
static constexpr size_t SR_OUTPUT_INF_FLAG
Definition ecc.hpp:47
static constexpr size_t SR_X_MATCH
Definition ecc.hpp:40
static constexpr size_t SR_OP_CHECK
Definition ecc.hpp:39
static bool skip(const AllEntities &in)
Definition ecc.hpp:20
static void accumulate(ContainerOverSubrelations &evals, const AllEntities &in, const RelationParameters< FF > &, const FF &scaling_factor)
Definition ecc_impl.hpp:11
static constexpr std::array< size_t, 20 > SUBRELATION_PARTIAL_LENGTHS
Definition ecc.hpp:17
AvmFlavorSettings::FF FF
Definition field.hpp:10
ColumnAndShifts
Definition columns.hpp:34
std::string to_string(bb::avm2::ValueTag tag)
Container for parameters used by the grand product (permutation, lookup) Honk relations.