Skip to content

Commit 78d644d

Browse files
authored
Minor rename to conform to the naming converntion (#211)
1 parent ba15855 commit 78d644d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cpp/src/aztec/honk/composer/composer_helper/composer_helper_lib.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ std::shared_ptr<bonk::proving_key> initialize_proving_key(const CircuitConstruct
4848
* @param key Pointer to the proving key
4949
*/
5050
template <typename CircuitConstructor>
51-
void put_selectors_in_polynomial_cache(const CircuitConstructor& circuit_constructor,
51+
void construct_lagrange_selector_forms(const CircuitConstructor& circuit_constructor,
5252
bonk::proving_key* circuit_proving_key)
5353
{
5454
const size_t num_public_inputs = circuit_constructor.public_inputs.size();
@@ -208,7 +208,7 @@ std::shared_ptr<bonk::verification_key> compute_verification_key_base_common(
208208

209209
template std::shared_ptr<bonk::proving_key> initialize_proving_key<StandardCircuitConstructor>(
210210
const StandardCircuitConstructor&, bonk::ReferenceStringFactory*, const size_t, const size_t, plonk::ComposerType);
211-
template void put_selectors_in_polynomial_cache<StandardCircuitConstructor>(const StandardCircuitConstructor&,
211+
template void construct_lagrange_selector_forms<StandardCircuitConstructor>(const StandardCircuitConstructor&,
212212
bonk::proving_key*);
213213
template std::vector<barretenberg::polynomial> compute_witness_base<StandardCircuitConstructor>(
214214
const StandardCircuitConstructor&, const size_t, const size_t);

cpp/src/aztec/honk/composer/composer_helper/composer_helper_lib.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ std::shared_ptr<bonk::proving_key> initialize_proving_key(const CircuitConstruct
3434
* @param key Pointer to the proving key
3535
*/
3636
template <typename CircuitConstructor>
37-
void put_selectors_in_polynomial_cache(const CircuitConstructor& circuit_constructor, bonk::proving_key* key);
37+
void construct_lagrange_selector_forms(const CircuitConstructor& circuit_constructor, bonk::proving_key* key);
3838

3939
/**
4040
* @brief Retrieve lagrange forms of selector polynomials and compute monomial and coset-monomial forms and put into

cpp/src/aztec/honk/composer/composer_helper/standard_honk_composer_helper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ std::shared_ptr<bonk::proving_key> StandardHonkComposerHelper<CircuitConstructor
3535
num_randomized_gates,
3636
plonk::ComposerType::STANDARD_HONK);
3737
// Compute lagrange selectors
38-
put_selectors_in_polynomial_cache(constructor, circuit_proving_key.get());
38+
construct_lagrange_selector_forms(constructor, circuit_proving_key.get());
3939

4040
return circuit_proving_key;
4141
}

cpp/src/aztec/honk/composer/composer_helper/standard_plonk_composer_helper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ std::shared_ptr<bonk::proving_key> StandardPlonkComposerHelper<CircuitConstructo
3737
circuit_proving_key = initialize_proving_key(
3838
constructor, crs_factory_.get(), minimum_circuit_size, num_randomized_gates, plonk::ComposerType::STANDARD);
3939
// Compute lagrange selectors
40-
put_selectors_in_polynomial_cache(constructor, circuit_proving_key.get());
40+
construct_lagrange_selector_forms(constructor, circuit_proving_key.get());
4141
// Compute selectors in monomial form
4242
compute_monomial_and_coset_selector_forms(circuit_proving_key.get(), standard_selector_properties());
4343

0 commit comments

Comments
 (0)