Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeyasa committed Dec 24, 2024
1 parent b989711 commit 6a71b95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions icicle/include/icicle/sumcheck/sumcheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ namespace icicle {
class Sumcheck
{
public:

/**
* @brief Constructor for the Sumcheck class.
* @param backend Shared pointer to the backend responsible for Sumcheck operations.
Expand All @@ -44,7 +43,7 @@ namespace icicle {
/**
* @brief Calculate the sumcheck based on the inputs and retrieve the Sumcheck proof.
* @param mle_polynomials a vector of MLE polynomials to process.
* F(X_1,X_2,X_3) = a_0 (1-X_1) (1-X_2) (1-X_3) + a_1 (1-X_1)(1-X_2) X_3 + a_2 (1-X_1) X_2 (1-X_3) +
* F(X_1,X_2,X_3) = a_0 (1-X_1) (1-X_2) (1-X_3) + a_1 (1-X_1)(1-X_2) X_3 + a_2 (1-X_1) X_2 (1-X_3) +
* a_3 (1-X_1) X_2 X_3 + a_4 X_1 (1-X_2) (1-X_3) + a_5 X_1 (1-X_2) X_3+ a_6 X_1 X_2 (1-X_3) + a_7 X_1 X_2 X_3
* @param combine_function a program that define how to fold all MLS polynomials into the round polynomial.
* @param config Configuration for the Sumcheck operation.
Expand Down

0 comments on commit 6a71b95

Please sign in to comment.