Skip to content

Commit

Permalink
refac(zk): rename linear_combination_of_gates to circuit_column
Browse files Browse the repository at this point in the history
  • Loading branch information
dongchangYoo committed Dec 20, 2023
1 parent 00870c1 commit 21233b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tachyon/zk/plonk/vanishing/prover_vanishing_argument.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ template <typename PCSTy, typename ExtendedEvals>
[[nodiscard]] bool CommitFinalHPoly(
ProverBase<PCSTy>* prover,
VanishingCommitted<EntityTy::kProver, PCSTy>&& committed,
const VerifyingKey<PCSTy>& vk, ExtendedEvals& linear_combination_of_gates,
const VerifyingKey<PCSTy>& vk, ExtendedEvals& circuit_column,
VanishingConstructed<EntityTy::kProver, PCSTy>* constructed_out) {
using F = typename PCSTy::Field;
using Poly = typename PCSTy::Poly;
Expand All @@ -62,7 +62,7 @@ template <typename PCSTy, typename ExtendedEvals>

// Divide by t(X) = X^{params.n} - 1.
ExtendedEvals h_evals = DivideByVanishingPolyInPlace<F>(
linear_combination_of_gates, prover->extended_domain(), prover->domain());
circuit_column, prover->extended_domain(), prover->domain());

// Obtain final h(X) polynomial
ExtendedPoly h_poly =
Expand Down

0 comments on commit 21233b6

Please sign in to comment.