@@ -50,32 +50,4 @@ static constexpr uint32_t NUM_INTERLEAVING_CLAIMS = 2;
5050// increase the `round_index` of the original transcript by `BRANCHING_JUMP`, so that there is a gap of `BRANCHING_JUMP`
5151// round indices between what happened before and after the branching. This constant is arbitrary.
5252static constexpr std::size_t BRANCHING_JUMP = 5 ;
53-
54- // Number of bb::fr elements used to represent an element of bb::fr in the public inputs
55- static constexpr std::size_t FR_PUBLIC_INPUTS_SIZE = 1 ;
56-
57- // Number of bb::fr elements used to represent a bigfield element in the public inputs
58- static constexpr std::size_t BIGFIELD_PUBLIC_INPUTS_SIZE = 4 ;
59-
60- // Number of bb::fr elements used to represent a goblin bigfield element in the public inputs
61- static constexpr std::size_t GOBLIN_FIELD_PUBLIC_INPUTS_SIZE = 4 ;
62-
63- // Number of bb::fr elements used to represent a biggroup element in the public inputs
64- static constexpr std::size_t BIGGROUP_PUBLIC_INPUTS_SIZE = 2 * BIGFIELD_PUBLIC_INPUTS_SIZE;
65-
66- // Number of bb::fr elements used to represent a goblin biggroup element in the public inputs
67- static constexpr std::size_t GOBLIN_GROUP_PUBLIC_INPUTS_SIZE = 2 * GOBLIN_FIELD_PUBLIC_INPUTS_SIZE;
68-
69- // Number of bb::fr elements used to represent a pair {P0, P1} of points in the public inputs
70- // Note that the formula assumes BIGGROUP_PUBLIC_INPUTS_SIZE == GOBLIN_GROUP_PUBLIC_INPUTS_SIZE
71- static constexpr std::size_t PAIRING_POINTS_SIZE = 2 * BIGGROUP_PUBLIC_INPUTS_SIZE;
72-
73- // Number of bb::fr elements used to represent a opening claim (C, (r, p(r))) over Grumpkin
74- // Formula is: a point on Grumpkin (2 * FR_PUBLIC_INPUTS_SIZE) and two points on bb::fq (2 *
75- // BIGFIELD_PUBLIC_INPUTS_SIZE)
76- static constexpr std::size_t GRUMPKIN_OPENING_CLAIM_SIZE = 2 * FR_PUBLIC_INPUTS_SIZE + 2 * BIGFIELD_PUBLIC_INPUTS_SIZE;
77-
78- // Invalid public input size, used in OpeningClaim<Curve> when Curve is not Grumpkin
79- static constexpr std::size_t INVALID_PUBLIC_INPUTS_SIZE = 0 ;
80-
8153} // namespace bb
0 commit comments