├── .github ├── ISSUE_TEMPLATE │ └── eli15.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── lints-beta.yml │ ├── lints-stable.yml │ └── trigger_proverbench_dispatch.yml ├── .gitignore ├── COPYING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── arithmetic └── curves │ ├── .github │ └── workflows │ │ └── ci.yml │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── build.rs │ └── src │ ├── arithmetic.rs │ ├── bn256 │ ├── assembly.rs │ ├── curve.rs │ ├── engine.rs │ ├── fq.rs │ ├── fq12.rs │ ├── fq2.rs │ ├── fq6.rs │ ├── fr.rs │ └── mod.rs │ ├── derive │ ├── curve.rs │ ├── field.rs │ └── mod.rs │ ├── lib.rs │ ├── pairing.rs │ ├── pasta │ └── mod.rs │ ├── secp256k1 │ ├── curve.rs │ ├── fp.rs │ ├── fq.rs │ └── mod.rs │ ├── serde.rs │ └── tests │ ├── curve.rs │ ├── field.rs │ └── mod.rs ├── book ├── .gitignore ├── Makefile ├── book.toml ├── edithtml.sh ├── macros.txt └── src │ ├── IDENTIFIERS.json │ ├── README.md │ ├── SUMMARY.md │ ├── background.md │ ├── background │ ├── curves.md │ ├── fields.md │ ├── groups.md │ ├── pc-ipa.md │ ├── plonkish.md │ ├── polynomials.md │ └── recursion.md │ ├── concepts.md │ ├── concepts │ ├── arithmetization.md │ ├── chips.md │ ├── gadgets.md │ └── proofs.md │ ├── design.md │ ├── design │ ├── gadgets.md │ ├── gadgets │ │ ├── decomposition.md │ │ ├── ecc.md │ │ ├── ecc │ │ │ ├── addition.md │ │ │ ├── fixed-base-scalar-mul.md │ │ │ ├── var-base-scalar-mul.md │ │ │ └── witnessing-points.md │ │ ├── sha256.md │ │ ├── sha256 │ │ │ ├── bit_reassignment.png │ │ │ ├── compression.png │ │ │ ├── low_sigma_0.png │ │ │ ├── low_sigma_1.png │ │ │ ├── table16.md │ │ │ ├── upp_sigma_0.png │ │ │ └── upp_sigma_1.png │ │ ├── sinsemilla.md │ │ └── sinsemilla │ │ │ └── merkle-crh.md │ ├── implementation.md │ ├── implementation │ │ ├── fields.md │ │ ├── proofs.md │ │ └── selector-combining.md │ ├── protocol.md │ ├── proving-system.md │ └── proving-system │ │ ├── circuit-commitments.md │ │ ├── comparison.md │ │ ├── inner-product.md │ │ ├── lookup.md │ │ ├── multipoint-opening.md │ │ ├── permutation-diagram.png │ │ ├── permutation-diagram.svg │ │ ├── permutation.md │ │ └── vanishing.md │ ├── user.md │ └── user │ ├── dev-tools.md │ ├── gadgets.md │ ├── lookup-tables.md │ ├── simple-example.md │ └── tips-and-tricks.md ├── docs ├── .lock ├── COPYRIGHT.txt ├── FiraSans-LICENSE.txt ├── FiraSans-Medium.woff2 ├── FiraSans-Regular.woff2 ├── LICENSE-APACHE.txt ├── LICENSE-MIT.txt ├── NanumBarunGothic-LICENSE.txt ├── NanumBarunGothic.ttf.woff2 ├── SourceCodePro-It.ttf.woff2 ├── SourceCodePro-LICENSE.txt ├── SourceCodePro-Regular.ttf.woff2 ├── SourceCodePro-Semibold.ttf.woff2 ├── SourceSerif4-Bold.ttf.woff2 ├── SourceSerif4-It.ttf.woff2 ├── SourceSerif4-LICENSE.md ├── SourceSerif4-Regular.ttf.woff2 ├── ayu.css ├── clipboard.svg ├── crates.js ├── dark.css ├── down-arrow.svg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.svg ├── halo2 │ ├── all.html │ ├── index.html │ └── sidebar-items.js ├── halo2_proofs │ ├── all.html │ ├── arithmetic │ │ ├── fn.best_fft.html │ │ ├── fn.best_multiexp.html │ │ ├── fn.compute_inner_product.html │ │ ├── fn.eval_polynomial.html │ │ ├── fn.g_to_lagrange.html │ │ ├── fn.kate_division.html │ │ ├── fn.lagrange_interpolate.html │ │ ├── fn.parallelize.html │ │ ├── fn.recursive_butterfly_arithmetic.html │ │ ├── fn.small_multiexp.html │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── trait.CurveAffine.html │ │ ├── trait.CurveExt.html │ │ ├── trait.Field.html │ │ ├── trait.FieldExt.html │ │ └── trait.Group.html │ ├── circuit │ │ ├── floor_planner │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ └── single_pass │ │ │ │ └── struct.SimpleFloorPlanner.html │ │ ├── index.html │ │ ├── layouter │ │ │ ├── enum.RegionColumn.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.RegionShape.html │ │ │ ├── trait.RegionLayouter.html │ │ │ └── trait.TableLayouter.html │ │ ├── sidebar-items.js │ │ ├── struct.AssignedCell.html │ │ ├── struct.Cell.html │ │ ├── struct.NamespacedLayouter.html │ │ ├── struct.Region.html │ │ ├── struct.RegionIndex.html │ │ ├── struct.RegionStart.html │ │ ├── struct.SimpleFloorPlanner.html │ │ ├── struct.Table.html │ │ ├── struct.Value.html │ │ ├── trait.Chip.html │ │ ├── trait.Layouter.html │ │ └── value │ │ │ └── struct.Value.html │ ├── dev │ │ ├── enum.FailureLocation.html │ │ ├── enum.VerifyFailure.html │ │ ├── failure │ │ │ ├── enum.FailureLocation.html │ │ │ └── enum.VerifyFailure.html │ │ ├── gates │ │ │ └── struct.CircuitGates.html │ │ ├── index.html │ │ ├── metadata │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.Column.html │ │ │ ├── struct.Constraint.html │ │ │ ├── struct.Gate.html │ │ │ ├── struct.Region.html │ │ │ └── struct.VirtualCell.html │ │ ├── sidebar-items.js │ │ ├── struct.CircuitGates.html │ │ └── struct.MockProver.html │ ├── enum.SerdeFormat.html │ ├── helpers │ │ └── enum.SerdeFormat.html │ ├── index.html │ ├── plonk │ │ ├── assigned │ │ │ └── enum.Assigned.html │ │ ├── circuit │ │ │ ├── enum.Any.html │ │ │ ├── enum.Expression.html │ │ │ ├── struct.Advice.html │ │ │ ├── struct.AdviceQuery.html │ │ │ ├── struct.Challenge.html │ │ │ ├── struct.Column.html │ │ │ ├── struct.Constraint.html │ │ │ ├── struct.ConstraintSystem.html │ │ │ ├── struct.Constraints.html │ │ │ ├── struct.FirstPhase.html │ │ │ ├── struct.Fixed.html │ │ │ ├── struct.FixedQuery.html │ │ │ ├── struct.Gate.html │ │ │ ├── struct.Instance.html │ │ │ ├── struct.InstanceQuery.html │ │ │ ├── struct.PinnedConstraintSystem.html │ │ │ ├── struct.SecondPhase.html │ │ │ ├── struct.Selector.html │ │ │ ├── struct.TableColumn.html │ │ │ ├── struct.ThirdPhase.html │ │ │ ├── struct.VirtualCell.html │ │ │ ├── struct.VirtualCells.html │ │ │ ├── trait.Assignment.html │ │ │ ├── trait.Circuit.html │ │ │ ├── trait.ColumnType.html │ │ │ ├── trait.FloorPlanner.html │ │ │ └── trait.Phase.html │ │ ├── enum.Any.html │ │ ├── enum.Assigned.html │ │ ├── enum.Error.html │ │ ├── enum.Expression.html │ │ ├── error │ │ │ └── enum.Error.html │ │ ├── fn.create_proof.html │ │ ├── fn.keygen_pk.html │ │ ├── fn.keygen_vk.html │ │ ├── fn.verify_proof.html │ │ ├── index.html │ │ ├── keygen │ │ │ ├── fn.keygen_pk.html │ │ │ └── fn.keygen_vk.html │ │ ├── prover │ │ │ └── fn.create_proof.html │ │ ├── sidebar-items.js │ │ ├── struct.Advice.html │ │ ├── struct.AdviceQuery.html │ │ ├── struct.BatchVerifier.html │ │ ├── struct.Challenge.html │ │ ├── struct.Column.html │ │ ├── struct.Constraint.html │ │ ├── struct.ConstraintSystem.html │ │ ├── struct.Constraints.html │ │ ├── struct.FirstPhase.html │ │ ├── struct.Fixed.html │ │ ├── struct.FixedQuery.html │ │ ├── struct.Gate.html │ │ ├── struct.Instance.html │ │ ├── struct.InstanceQuery.html │ │ ├── struct.PinnedConstraintSystem.html │ │ ├── struct.PinnedVerificationKey.html │ │ ├── struct.ProvingKey.html │ │ ├── struct.SecondPhase.html │ │ ├── struct.Selector.html │ │ ├── struct.TableColumn.html │ │ ├── struct.ThirdPhase.html │ │ ├── struct.VerifyingKey.html │ │ ├── struct.VirtualCell.html │ │ ├── struct.VirtualCells.html │ │ ├── trait.Assignment.html │ │ ├── trait.Circuit.html │ │ ├── trait.ColumnType.html │ │ ├── trait.FloorPlanner.html │ │ ├── trait.Phase.html │ │ └── verifier │ │ │ ├── batch │ │ │ └── struct.BatchVerifier.html │ │ │ └── fn.verify_proof.html │ ├── poly │ │ ├── commitment │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.Blind.html │ │ │ ├── trait.CommitmentScheme.html │ │ │ ├── trait.MSM.html │ │ │ ├── trait.Params.html │ │ │ ├── trait.ParamsProver.html │ │ │ ├── trait.ParamsVerifier.html │ │ │ ├── trait.Prover.html │ │ │ └── trait.Verifier.html │ │ ├── domain │ │ │ ├── struct.EvaluationDomain.html │ │ │ └── struct.PinnedEvaluationDomain.html │ │ ├── enum.Error.html │ │ ├── index.html │ │ ├── ipa │ │ │ ├── commitment │ │ │ │ ├── fn.create_proof.html │ │ │ │ ├── fn.verify_proof.html │ │ │ │ ├── index.html │ │ │ │ ├── prover │ │ │ │ │ └── fn.create_proof.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.IPACommitmentScheme.html │ │ │ │ ├── struct.ParamsIPA.html │ │ │ │ ├── type.ParamsVerifierIPA.html │ │ │ │ └── verifier │ │ │ │ │ └── fn.verify_proof.html │ │ │ ├── index.html │ │ │ ├── msm │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ └── struct.MSMIPA.html │ │ │ ├── multiopen │ │ │ │ ├── index.html │ │ │ │ ├── prover │ │ │ │ │ └── struct.ProverIPA.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.ProverIPA.html │ │ │ │ ├── struct.VerifierIPA.html │ │ │ │ └── verifier │ │ │ │ │ └── struct.VerifierIPA.html │ │ │ ├── sidebar-items.js │ │ │ └── strategy │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.Accumulator.html │ │ │ │ ├── struct.AccumulatorStrategy.html │ │ │ │ ├── struct.GuardIPA.html │ │ │ │ └── struct.SingleStrategy.html │ │ ├── kzg │ │ │ ├── commitment │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.KZGCommitmentScheme.html │ │ │ │ ├── struct.ParamsKZG.html │ │ │ │ └── type.ParamsVerifierKZG.html │ │ │ ├── index.html │ │ │ ├── msm │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.DualMSM.html │ │ │ │ └── struct.MSMKZG.html │ │ │ ├── multiopen │ │ │ │ ├── gwc │ │ │ │ │ ├── prover │ │ │ │ │ │ └── struct.ProverGWC.html │ │ │ │ │ └── verifier │ │ │ │ │ │ └── struct.VerifierGWC.html │ │ │ │ ├── index.html │ │ │ │ ├── shplonk │ │ │ │ │ ├── prover │ │ │ │ │ │ └── struct.ProverSHPLONK.html │ │ │ │ │ └── verifier │ │ │ │ │ │ └── struct.VerifierSHPLONK.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.ProverGWC.html │ │ │ │ ├── struct.ProverSHPLONK.html │ │ │ │ ├── struct.VerifierGWC.html │ │ │ │ └── struct.VerifierSHPLONK.html │ │ │ ├── sidebar-items.js │ │ │ └── strategy │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.AccumulatorStrategy.html │ │ │ │ ├── struct.GuardKZG.html │ │ │ │ └── struct.SingleStrategy.html │ │ ├── query │ │ │ ├── struct.ProverQuery.html │ │ │ └── struct.VerifierQuery.html │ │ ├── sidebar-items.js │ │ ├── strategy │ │ │ ├── trait.Guard.html │ │ │ └── trait.VerificationStrategy.html │ │ ├── struct.Coeff.html │ │ ├── struct.EvaluationDomain.html │ │ ├── struct.ExtendedLagrangeCoeff.html │ │ ├── struct.LagrangeCoeff.html │ │ ├── struct.PinnedEvaluationDomain.html │ │ ├── struct.Polynomial.html │ │ ├── struct.ProverQuery.html │ │ ├── struct.Rotation.html │ │ ├── struct.VerifierQuery.html │ │ ├── trait.Basis.html │ │ ├── trait.Guard.html │ │ └── trait.VerificationStrategy.html │ ├── sidebar-items.js │ └── transcript │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── struct.Blake2bRead.html │ │ ├── struct.Blake2bWrite.html │ │ ├── struct.Challenge255.html │ │ ├── struct.ChallengeScalar.html │ │ ├── trait.EncodedChallenge.html │ │ ├── trait.Transcript.html │ │ ├── trait.TranscriptRead.html │ │ ├── trait.TranscriptReadBuffer.html │ │ ├── trait.TranscriptWrite.html │ │ └── trait.TranscriptWriterBuffer.html ├── halo2curves │ ├── all.html │ ├── arithmetic │ │ └── trait.CurveAffineExt.html │ ├── bn256 │ │ ├── constant.BN_X.html │ │ ├── constant.FROBENIUS_COEFF_FQ12_C1.html │ │ ├── constant.FROBENIUS_COEFF_FQ2_C1.html │ │ ├── constant.FROBENIUS_COEFF_FQ6_C1.html │ │ ├── constant.FROBENIUS_COEFF_FQ6_C2.html │ │ ├── constant.NEGATIVE_ONE.html │ │ ├── constant.SIX_U_PLUS_2_NAF.html │ │ ├── constant.XI_TO_Q_MINUS_1_OVER_2.html │ │ ├── curve │ │ │ ├── struct.G1.html │ │ │ ├── struct.G1Affine.html │ │ │ ├── struct.G1Compressed.html │ │ │ ├── struct.G2.html │ │ │ ├── struct.G2Affine.html │ │ │ └── struct.G2Compressed.html │ │ ├── engine │ │ │ ├── constant.BN_X.html │ │ │ ├── constant.SIX_U_PLUS_2_NAF.html │ │ │ ├── constant.XI_TO_Q_MINUS_1_OVER_2.html │ │ │ ├── fn.multi_miller_loop.html │ │ │ ├── fn.pairing.html │ │ │ ├── struct.Bn256.html │ │ │ ├── struct.G2Prepared.html │ │ │ └── struct.Gt.html │ │ ├── enum.LegendreSymbol.html │ │ ├── fn.multi_miller_loop.html │ │ ├── fn.pairing.html │ │ ├── fq │ │ │ ├── constant.NEGATIVE_ONE.html │ │ │ └── struct.Fq.html │ │ ├── fq12 │ │ │ ├── constant.FROBENIUS_COEFF_FQ12_C1.html │ │ │ └── struct.Fq12.html │ │ ├── fq2 │ │ │ ├── constant.FROBENIUS_COEFF_FQ2_C1.html │ │ │ ├── struct.Fq2.html │ │ │ └── struct.Fq2Bytes.html │ │ ├── fq6 │ │ │ ├── constant.FROBENIUS_COEFF_FQ6_C1.html │ │ │ ├── constant.FROBENIUS_COEFF_FQ6_C2.html │ │ │ └── struct.Fq6.html │ │ ├── fr │ │ │ └── struct.Fr.html │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── struct.Bn256.html │ │ ├── struct.Fq.html │ │ ├── struct.Fq12.html │ │ ├── struct.Fq2.html │ │ ├── struct.Fq2Bytes.html │ │ ├── struct.Fq6.html │ │ ├── struct.Fr.html │ │ ├── struct.G1.html │ │ ├── struct.G1Affine.html │ │ ├── struct.G1Compressed.html │ │ ├── struct.G2.html │ │ ├── struct.G2Affine.html │ │ ├── struct.G2Compressed.html │ │ ├── struct.G2Prepared.html │ │ └── struct.Gt.html │ ├── index.html │ ├── macro.batch_add!.html │ ├── macro.batch_add.html │ ├── macro.field_arithmetic!.html │ ├── macro.field_arithmetic.html │ ├── macro.field_common!.html │ ├── macro.field_common.html │ ├── macro.field_specific!.html │ ├── macro.field_specific.html │ ├── macro.impl_add_binop_specify_output!.html │ ├── macro.impl_add_binop_specify_output.html │ ├── macro.impl_binops_additive!.html │ ├── macro.impl_binops_additive.html │ ├── macro.impl_binops_additive_specify_output!.html │ ├── macro.impl_binops_additive_specify_output.html │ ├── macro.impl_binops_multiplicative!.html │ ├── macro.impl_binops_multiplicative.html │ ├── macro.impl_binops_multiplicative_mixed!.html │ ├── macro.impl_binops_multiplicative_mixed.html │ ├── macro.impl_sub_binop_specify_output!.html │ ├── macro.impl_sub_binop_specify_output.html │ ├── macro.new_curve_impl!.html │ ├── macro.new_curve_impl.html │ ├── pairing │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── trait.Engine.html │ │ ├── trait.MillerLoopResult.html │ │ ├── trait.MultiMillerLoop.html │ │ └── trait.PairingCurveAffine.html │ ├── pasta │ │ ├── index.html │ │ ├── pallas │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── type.Affine.html │ │ │ ├── type.Base.html │ │ │ ├── type.Point.html │ │ │ └── type.Scalar.html │ │ ├── sidebar-items.js │ │ ├── struct.Ep.html │ │ ├── struct.EpAffine.html │ │ ├── struct.Eq.html │ │ ├── struct.EqAffine.html │ │ ├── struct.Fp.html │ │ ├── struct.Fq.html │ │ └── vesta │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── type.Affine.html │ │ │ ├── type.Base.html │ │ │ ├── type.Point.html │ │ │ └── type.Scalar.html │ ├── secp256k1 │ │ ├── curve │ │ │ ├── struct.Secp256k1.html │ │ │ ├── struct.Secp256k1Affine.html │ │ │ └── struct.Secp256k1Compressed.html │ │ ├── fp │ │ │ └── struct.Fp.html │ │ ├── fq │ │ │ └── struct.Fq.html │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── struct.Fp.html │ │ ├── struct.Fq.html │ │ ├── struct.Secp256k1.html │ │ ├── struct.Secp256k1Affine.html │ │ └── struct.Secp256k1Compressed.html │ ├── serde │ │ ├── index.html │ │ ├── sidebar-items.js │ │ └── trait.SerdeObject.html │ ├── sidebar-items.js │ ├── struct.Coordinates.html │ ├── trait.CurveAffine.html │ ├── trait.CurveAffineExt.html │ ├── trait.CurveExt.html │ ├── trait.FieldExt.html │ └── trait.Group.html ├── help.html ├── implementors │ ├── core │ │ ├── clone │ │ │ └── trait.Clone.js │ │ ├── cmp │ │ │ ├── trait.Eq.js │ │ │ ├── trait.Ord.js │ │ │ ├── trait.PartialEq.js │ │ │ └── trait.PartialOrd.js │ │ ├── convert │ │ │ ├── trait.AsMut.js │ │ │ ├── trait.AsRef.js │ │ │ ├── trait.From.js │ │ │ └── trait.TryFrom.js │ │ ├── default │ │ │ └── trait.Default.js │ │ ├── error │ │ │ └── trait.Error.js │ │ ├── fmt │ │ │ ├── trait.Debug.js │ │ │ └── trait.Display.js │ │ ├── hash │ │ │ └── trait.Hash.js │ │ ├── iter │ │ │ └── traits │ │ │ │ ├── accum │ │ │ │ └── trait.Sum.js │ │ │ │ └── collect │ │ │ │ ├── trait.FromIterator.js │ │ │ │ └── trait.IntoIterator.js │ │ ├── marker │ │ │ ├── trait.Copy.js │ │ │ ├── trait.Freeze.js │ │ │ ├── trait.Send.js │ │ │ ├── trait.StructuralEq.js │ │ │ ├── trait.StructuralPartialEq.js │ │ │ ├── trait.Sync.js │ │ │ └── trait.Unpin.js │ │ ├── ops │ │ │ ├── arith │ │ │ │ ├── trait.Add.js │ │ │ │ ├── trait.AddAssign.js │ │ │ │ ├── trait.Mul.js │ │ │ │ ├── trait.MulAssign.js │ │ │ │ ├── trait.Neg.js │ │ │ │ ├── trait.Sub.js │ │ │ │ └── trait.SubAssign.js │ │ │ ├── deref │ │ │ │ ├── trait.Deref.js │ │ │ │ └── trait.DerefMut.js │ │ │ ├── drop │ │ │ │ └── trait.Drop.js │ │ │ └── index │ │ │ │ ├── trait.Index.js │ │ │ │ └── trait.IndexMut.js │ │ └── panic │ │ │ └── unwind_safe │ │ │ ├── trait.RefUnwindSafe.js │ │ │ └── trait.UnwindSafe.js │ ├── ff │ │ ├── trait.Field.js │ │ └── trait.PrimeField.js │ ├── group │ │ ├── cofactor │ │ │ ├── trait.CofactorCurve.js │ │ │ ├── trait.CofactorCurveAffine.js │ │ │ └── trait.CofactorGroup.js │ │ ├── prime │ │ │ ├── trait.PrimeCurve.js │ │ │ ├── trait.PrimeCurveAffine.js │ │ │ └── trait.PrimeGroup.js │ │ ├── trait.Curve.js │ │ ├── trait.Group.js │ │ ├── trait.GroupEncoding.js │ │ └── trait.UncompressedEncoding.js │ ├── halo2_proofs │ │ ├── circuit │ │ │ └── trait.Layouter.js │ │ ├── plonk │ │ │ └── circuit │ │ │ │ ├── trait.Assignment.js │ │ │ │ ├── trait.ColumnType.js │ │ │ │ ├── trait.FloorPlanner.js │ │ │ │ └── trait.Phase.js │ │ ├── poly │ │ │ ├── commitment │ │ │ │ ├── trait.CommitmentScheme.js │ │ │ │ ├── trait.MSM.js │ │ │ │ ├── trait.Params.js │ │ │ │ ├── trait.ParamsProver.js │ │ │ │ ├── trait.ParamsVerifier.js │ │ │ │ ├── trait.Prover.js │ │ │ │ └── trait.Verifier.js │ │ │ ├── strategy │ │ │ │ ├── trait.Guard.js │ │ │ │ └── trait.VerificationStrategy.js │ │ │ └── trait.Basis.js │ │ └── transcript │ │ │ ├── trait.EncodedChallenge.js │ │ │ ├── trait.Transcript.js │ │ │ ├── trait.TranscriptRead.js │ │ │ ├── trait.TranscriptReadBuffer.js │ │ │ ├── trait.TranscriptWrite.js │ │ │ └── trait.TranscriptWriterBuffer.js │ ├── halo2curves │ │ ├── arithmetic │ │ │ └── trait.CurveAffineExt.js │ │ ├── pairing │ │ │ ├── trait.Engine.js │ │ │ ├── trait.MillerLoopResult.js │ │ │ ├── trait.MultiMillerLoop.js │ │ │ └── trait.PairingCurveAffine.js │ │ └── serde │ │ │ └── trait.SerdeObject.js │ ├── pasta_curves │ │ └── arithmetic │ │ │ ├── curves │ │ │ ├── trait.CurveAffine.js │ │ │ └── trait.CurveExt.js │ │ │ ├── fields │ │ │ ├── trait.FieldExt.js │ │ │ └── trait.SqrtRatio.js │ │ │ └── trait.Group.js │ ├── serde │ │ ├── de │ │ │ └── trait.Deserialize.js │ │ └── ser │ │ │ └── trait.Serialize.js │ └── subtle │ │ ├── trait.ConditionallySelectable.js │ │ └── trait.ConstantTimeEq.js ├── index.html ├── light.css ├── main.js ├── normalize.css ├── noscript.css ├── poseidon │ ├── all.html │ ├── index.html │ ├── poseidon │ │ └── struct.Poseidon.html │ ├── sidebar-items.js │ ├── spec │ │ ├── struct.MDSMatrices.html │ │ ├── struct.MDSMatrix.html │ │ ├── struct.SparseMDSMatrix.html │ │ ├── struct.Spec.html │ │ └── struct.State.html │ ├── struct.MDSMatrices.html │ ├── struct.MDSMatrix.html │ ├── struct.Poseidon.html │ ├── struct.SparseMDSMatrix.html │ ├── struct.Spec.html │ └── struct.State.html ├── rust-logo.svg ├── rustdoc.css ├── search-index.js ├── search.js ├── settings.css ├── settings.html ├── settings.js ├── source-files.js ├── source-script.js ├── src │ ├── halo2 │ │ └── lib.rs.html │ ├── halo2_proofs │ │ ├── arithmetic.rs.html │ │ ├── circuit.rs.html │ │ ├── circuit │ │ │ ├── floor_planner.rs.html │ │ │ ├── floor_planner │ │ │ │ └── single_pass.rs.html │ │ │ ├── layouter.rs.html │ │ │ └── value.rs.html │ │ ├── dev.rs.html │ │ ├── dev │ │ │ ├── failure.rs.html │ │ │ ├── failure │ │ │ │ └── emitter.rs.html │ │ │ ├── gates.rs.html │ │ │ ├── metadata.rs.html │ │ │ └── util.rs.html │ │ ├── helpers.rs.html │ │ ├── lib.rs.html │ │ ├── multicore.rs.html │ │ ├── plonk.rs.html │ │ ├── plonk │ │ │ ├── assigned.rs.html │ │ │ ├── circuit.rs.html │ │ │ ├── circuit │ │ │ │ └── compress_selectors.rs.html │ │ │ ├── error.rs.html │ │ │ ├── evaluation.rs.html │ │ │ ├── keygen.rs.html │ │ │ ├── lookup.rs.html │ │ │ ├── lookup │ │ │ │ ├── prover.rs.html │ │ │ │ └── verifier.rs.html │ │ │ ├── permutation.rs.html │ │ │ ├── permutation │ │ │ │ ├── keygen.rs.html │ │ │ │ ├── prover.rs.html │ │ │ │ └── verifier.rs.html │ │ │ ├── prover.rs.html │ │ │ ├── vanishing.rs.html │ │ │ ├── vanishing │ │ │ │ ├── prover.rs.html │ │ │ │ └── verifier.rs.html │ │ │ ├── verifier.rs.html │ │ │ └── verifier │ │ │ │ └── batch.rs.html │ │ ├── poly.rs.html │ │ ├── poly │ │ │ ├── commitment.rs.html │ │ │ ├── domain.rs.html │ │ │ ├── ipa │ │ │ │ ├── commitment.rs.html │ │ │ │ ├── commitment │ │ │ │ │ ├── prover.rs.html │ │ │ │ │ └── verifier.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ ├── msm.rs.html │ │ │ │ ├── multiopen.rs.html │ │ │ │ ├── multiopen │ │ │ │ │ ├── prover.rs.html │ │ │ │ │ └── verifier.rs.html │ │ │ │ └── strategy.rs.html │ │ │ ├── kzg │ │ │ │ ├── commitment.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ ├── msm.rs.html │ │ │ │ ├── multiopen.rs.html │ │ │ │ ├── multiopen │ │ │ │ │ ├── gwc.rs.html │ │ │ │ │ ├── gwc │ │ │ │ │ │ ├── prover.rs.html │ │ │ │ │ │ └── verifier.rs.html │ │ │ │ │ ├── shplonk.rs.html │ │ │ │ │ └── shplonk │ │ │ │ │ │ ├── prover.rs.html │ │ │ │ │ │ └── verifier.rs.html │ │ │ │ └── strategy.rs.html │ │ │ ├── query.rs.html │ │ │ └── strategy.rs.html │ │ └── transcript.rs.html │ ├── halo2curves │ │ ├── arithmetic.rs.html │ │ ├── bn256 │ │ │ ├── curve.rs.html │ │ │ ├── engine.rs.html │ │ │ ├── fq.rs.html │ │ │ ├── fq12.rs.html │ │ │ ├── fq2.rs.html │ │ │ ├── fq6.rs.html │ │ │ ├── fr.rs.html │ │ │ └── mod.rs.html │ │ ├── derive │ │ │ ├── curve.rs.html │ │ │ ├── field.rs.html │ │ │ └── mod.rs.html │ │ ├── lib.rs.html │ │ ├── pairing.rs.html │ │ ├── pasta │ │ │ └── mod.rs.html │ │ ├── secp256k1 │ │ │ ├── curve.rs.html │ │ │ ├── fp.rs.html │ │ │ ├── fq.rs.html │ │ │ └── mod.rs.html │ │ └── serde.rs.html │ └── poseidon │ │ ├── grain.rs.html │ │ ├── lib.rs.html │ │ ├── matrix.rs.html │ │ ├── permutation.rs.html │ │ ├── poseidon.rs.html │ │ └── spec.rs.html ├── storage.js ├── toggle-minus.svg ├── toggle-plus.svg └── wheel.svg ├── halo2 ├── CHANGELOG.md ├── Cargo.toml ├── katex-header.html └── src │ └── lib.rs ├── halo2_proofs ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── benches │ ├── arithmetic.rs │ ├── dev_lookup.rs │ ├── fft.rs │ ├── hashtocurve.rs │ └── plonk.rs ├── examples │ ├── circuit-layout.rs │ ├── cost-model.rs │ ├── serialization.rs │ ├── shuffle.rs │ ├── simple-example.rs │ └── two-chip.rs ├── katex-header.html ├── proptest-regressions │ └── plonk │ │ ├── assigned.txt │ │ └── circuit │ │ └── compress_selectors.txt ├── src │ ├── arithmetic.rs │ ├── circuit.rs │ ├── circuit │ │ ├── floor_planner.rs │ │ ├── floor_planner │ │ │ ├── single_pass.rs │ │ │ ├── v1.rs │ │ │ └── v1 │ │ │ │ └── strategy.rs │ │ ├── layouter.rs │ │ └── value.rs │ ├── dev.rs │ ├── dev │ │ ├── cost.rs │ │ ├── failure.rs │ │ ├── failure │ │ │ └── emitter.rs │ │ ├── gates.rs │ │ ├── graph.rs │ │ ├── graph │ │ │ └── layout.rs │ │ ├── metadata.rs │ │ └── util.rs │ ├── helpers.rs │ ├── lib.rs │ ├── multicore.rs │ ├── plonk.rs │ ├── plonk │ │ ├── assigned.rs │ │ ├── circuit.rs │ │ ├── circuit │ │ │ └── compress_selectors.rs │ │ ├── error.rs │ │ ├── evaluation.rs │ │ ├── keygen.rs │ │ ├── lookup.rs │ │ ├── lookup │ │ │ ├── prover.rs │ │ │ └── verifier.rs │ │ ├── permutation.rs │ │ ├── permutation │ │ │ ├── keygen.rs │ │ │ ├── prover.rs │ │ │ └── verifier.rs │ │ ├── prover.rs │ │ ├── vanishing.rs │ │ ├── vanishing │ │ │ ├── prover.rs │ │ │ └── verifier.rs │ │ ├── verifier.rs │ │ └── verifier │ │ │ └── batch.rs │ ├── poly.rs │ ├── poly │ │ ├── commitment.rs │ │ ├── domain.rs │ │ ├── evaluator.rs │ │ ├── ipa │ │ │ ├── commitment.rs │ │ │ ├── commitment │ │ │ │ ├── prover.rs │ │ │ │ └── verifier.rs │ │ │ ├── mod.rs │ │ │ ├── msm.rs │ │ │ ├── multiopen.rs │ │ │ ├── multiopen │ │ │ │ ├── prover.rs │ │ │ │ └── verifier.rs │ │ │ └── strategy.rs │ │ ├── kzg │ │ │ ├── commitment.rs │ │ │ ├── mod.rs │ │ │ ├── msm.rs │ │ │ ├── multiopen.rs │ │ │ ├── multiopen │ │ │ │ ├── gwc.rs │ │ │ │ ├── gwc │ │ │ │ │ ├── prover.rs │ │ │ │ │ └── verifier.rs │ │ │ │ ├── shplonk.rs │ │ │ │ └── shplonk │ │ │ │ │ ├── prover.rs │ │ │ │ │ └── verifier.rs │ │ │ └── strategy.rs │ │ ├── multiopen_test.rs │ │ ├── query.rs │ │ └── strategy.rs │ └── transcript.rs └── tests │ └── plonk_api.rs ├── primitives └── poseidon │ ├── .gitignore │ ├── .rustfmt.toml │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ ├── grain.rs │ ├── lib.rs │ ├── matrix.rs │ ├── permutation.rs │ ├── poseidon.rs │ └── spec.rs └── rust-toolchain /.github/ISSUE_TEMPLATE/eli15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/.github/ISSUE_TEMPLATE/eli15.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lints-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/.github/workflows/lints-beta.yml -------------------------------------------------------------------------------- /.github/workflows/lints-stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/.github/workflows/lints-stable.yml -------------------------------------------------------------------------------- /.github/workflows/trigger_proverbench_dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/.github/workflows/trigger_proverbench_dispatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .vscode 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/COPYING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/README.md -------------------------------------------------------------------------------- /arithmetic/curves/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/.github/workflows/ci.yml -------------------------------------------------------------------------------- /arithmetic/curves/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/.gitignore -------------------------------------------------------------------------------- /arithmetic/curves/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/Cargo.toml -------------------------------------------------------------------------------- /arithmetic/curves/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/LICENSE-APACHE -------------------------------------------------------------------------------- /arithmetic/curves/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/LICENSE-MIT -------------------------------------------------------------------------------- /arithmetic/curves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/README.md -------------------------------------------------------------------------------- /arithmetic/curves/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/build.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/arithmetic.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/assembly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/assembly.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/curve.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/engine.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/fq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/fq.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/fq12.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/fq12.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/fq2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/fq2.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/fq6.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/fq6.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/fr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/fr.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/bn256/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/bn256/mod.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/derive/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/derive/curve.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/derive/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/derive/field.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/derive/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/derive/mod.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/lib.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/pairing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/pairing.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/pasta/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/pasta/mod.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/secp256k1/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/secp256k1/curve.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/secp256k1/fp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/secp256k1/fp.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/secp256k1/fq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/secp256k1/fq.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/secp256k1/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/secp256k1/mod.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/serde.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/tests/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/tests/curve.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/tests/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/tests/field.rs -------------------------------------------------------------------------------- /arithmetic/curves/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/arithmetic/curves/src/tests/mod.rs -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/Makefile -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/edithtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/edithtml.sh -------------------------------------------------------------------------------- /book/macros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/macros.txt -------------------------------------------------------------------------------- /book/src/IDENTIFIERS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/IDENTIFIERS.json -------------------------------------------------------------------------------- /book/src/README.md: -------------------------------------------------------------------------------- 1 | {{#include ../../README.md}} 2 | -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background.md -------------------------------------------------------------------------------- /book/src/background/curves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/curves.md -------------------------------------------------------------------------------- /book/src/background/fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/fields.md -------------------------------------------------------------------------------- /book/src/background/groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/groups.md -------------------------------------------------------------------------------- /book/src/background/pc-ipa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/pc-ipa.md -------------------------------------------------------------------------------- /book/src/background/plonkish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/plonkish.md -------------------------------------------------------------------------------- /book/src/background/polynomials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/polynomials.md -------------------------------------------------------------------------------- /book/src/background/recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/background/recursion.md -------------------------------------------------------------------------------- /book/src/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/concepts.md -------------------------------------------------------------------------------- /book/src/concepts/arithmetization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/concepts/arithmetization.md -------------------------------------------------------------------------------- /book/src/concepts/chips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/concepts/chips.md -------------------------------------------------------------------------------- /book/src/concepts/gadgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/concepts/gadgets.md -------------------------------------------------------------------------------- /book/src/concepts/proofs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/concepts/proofs.md -------------------------------------------------------------------------------- /book/src/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design.md -------------------------------------------------------------------------------- /book/src/design/gadgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets.md -------------------------------------------------------------------------------- /book/src/design/gadgets/decomposition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/decomposition.md -------------------------------------------------------------------------------- /book/src/design/gadgets/ecc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/ecc.md -------------------------------------------------------------------------------- /book/src/design/gadgets/ecc/addition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/ecc/addition.md -------------------------------------------------------------------------------- /book/src/design/gadgets/ecc/fixed-base-scalar-mul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/ecc/fixed-base-scalar-mul.md -------------------------------------------------------------------------------- /book/src/design/gadgets/ecc/var-base-scalar-mul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/ecc/var-base-scalar-mul.md -------------------------------------------------------------------------------- /book/src/design/gadgets/ecc/witnessing-points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/ecc/witnessing-points.md -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256.md -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/bit_reassignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/bit_reassignment.png -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/compression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/compression.png -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/low_sigma_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/low_sigma_0.png -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/low_sigma_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/low_sigma_1.png -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/table16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/table16.md -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/upp_sigma_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/upp_sigma_0.png -------------------------------------------------------------------------------- /book/src/design/gadgets/sha256/upp_sigma_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sha256/upp_sigma_1.png -------------------------------------------------------------------------------- /book/src/design/gadgets/sinsemilla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sinsemilla.md -------------------------------------------------------------------------------- /book/src/design/gadgets/sinsemilla/merkle-crh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/gadgets/sinsemilla/merkle-crh.md -------------------------------------------------------------------------------- /book/src/design/implementation.md: -------------------------------------------------------------------------------- 1 | # Implementation 2 | -------------------------------------------------------------------------------- /book/src/design/implementation/fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/implementation/fields.md -------------------------------------------------------------------------------- /book/src/design/implementation/proofs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/implementation/proofs.md -------------------------------------------------------------------------------- /book/src/design/implementation/selector-combining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/implementation/selector-combining.md -------------------------------------------------------------------------------- /book/src/design/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/protocol.md -------------------------------------------------------------------------------- /book/src/design/proving-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system.md -------------------------------------------------------------------------------- /book/src/design/proving-system/circuit-commitments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/circuit-commitments.md -------------------------------------------------------------------------------- /book/src/design/proving-system/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/comparison.md -------------------------------------------------------------------------------- /book/src/design/proving-system/inner-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/inner-product.md -------------------------------------------------------------------------------- /book/src/design/proving-system/lookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/lookup.md -------------------------------------------------------------------------------- /book/src/design/proving-system/multipoint-opening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/multipoint-opening.md -------------------------------------------------------------------------------- /book/src/design/proving-system/permutation-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/permutation-diagram.png -------------------------------------------------------------------------------- /book/src/design/proving-system/permutation-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/permutation-diagram.svg -------------------------------------------------------------------------------- /book/src/design/proving-system/permutation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/permutation.md -------------------------------------------------------------------------------- /book/src/design/proving-system/vanishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/design/proving-system/vanishing.md -------------------------------------------------------------------------------- /book/src/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/user.md -------------------------------------------------------------------------------- /book/src/user/dev-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/user/dev-tools.md -------------------------------------------------------------------------------- /book/src/user/gadgets.md: -------------------------------------------------------------------------------- 1 | # Gadgets 2 | -------------------------------------------------------------------------------- /book/src/user/lookup-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/user/lookup-tables.md -------------------------------------------------------------------------------- /book/src/user/simple-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/user/simple-example.md -------------------------------------------------------------------------------- /book/src/user/tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/book/src/user/tips-and-tricks.md -------------------------------------------------------------------------------- /docs/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/COPYRIGHT.txt -------------------------------------------------------------------------------- /docs/FiraSans-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/FiraSans-LICENSE.txt -------------------------------------------------------------------------------- /docs/FiraSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/FiraSans-Medium.woff2 -------------------------------------------------------------------------------- /docs/FiraSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/FiraSans-Regular.woff2 -------------------------------------------------------------------------------- /docs/LICENSE-APACHE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/LICENSE-APACHE.txt -------------------------------------------------------------------------------- /docs/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/LICENSE-MIT.txt -------------------------------------------------------------------------------- /docs/NanumBarunGothic-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/NanumBarunGothic-LICENSE.txt -------------------------------------------------------------------------------- /docs/NanumBarunGothic.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/NanumBarunGothic.ttf.woff2 -------------------------------------------------------------------------------- /docs/SourceCodePro-It.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceCodePro-It.ttf.woff2 -------------------------------------------------------------------------------- /docs/SourceCodePro-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceCodePro-LICENSE.txt -------------------------------------------------------------------------------- /docs/SourceCodePro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceCodePro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /docs/SourceCodePro-Semibold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceCodePro-Semibold.ttf.woff2 -------------------------------------------------------------------------------- /docs/SourceSerif4-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceSerif4-Bold.ttf.woff2 -------------------------------------------------------------------------------- /docs/SourceSerif4-It.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceSerif4-It.ttf.woff2 -------------------------------------------------------------------------------- /docs/SourceSerif4-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceSerif4-LICENSE.md -------------------------------------------------------------------------------- /docs/SourceSerif4-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/SourceSerif4-Regular.ttf.woff2 -------------------------------------------------------------------------------- /docs/ayu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/ayu.css -------------------------------------------------------------------------------- /docs/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/clipboard.svg -------------------------------------------------------------------------------- /docs/crates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/crates.js -------------------------------------------------------------------------------- /docs/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/dark.css -------------------------------------------------------------------------------- /docs/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/down-arrow.svg -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/halo2/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2/all.html -------------------------------------------------------------------------------- /docs/halo2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2/index.html -------------------------------------------------------------------------------- /docs/halo2/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {}; -------------------------------------------------------------------------------- /docs/halo2_proofs/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/all.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.best_fft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.best_fft.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.best_multiexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.best_multiexp.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.compute_inner_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.compute_inner_product.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.eval_polynomial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.eval_polynomial.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.g_to_lagrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.g_to_lagrange.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.kate_division.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.kate_division.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.lagrange_interpolate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.lagrange_interpolate.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.parallelize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.parallelize.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.recursive_butterfly_arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.recursive_butterfly_arithmetic.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/fn.small_multiexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/fn.small_multiexp.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/trait.CurveAffine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/trait.CurveAffine.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/trait.CurveExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/trait.CurveExt.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/trait.Field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/trait.Field.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/trait.FieldExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/trait.FieldExt.html -------------------------------------------------------------------------------- /docs/halo2_proofs/arithmetic/trait.Group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/arithmetic/trait.Group.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/floor_planner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/floor_planner/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/floor_planner/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {}; -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/layouter/enum.RegionColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/layouter/enum.RegionColumn.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/layouter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/layouter/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/layouter/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/layouter/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/layouter/struct.RegionShape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/layouter/struct.RegionShape.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/layouter/trait.RegionLayouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/layouter/trait.RegionLayouter.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/layouter/trait.TableLayouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/layouter/trait.TableLayouter.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.AssignedCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.AssignedCell.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.Cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.Cell.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.NamespacedLayouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.NamespacedLayouter.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.Region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.Region.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.RegionIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.RegionIndex.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.RegionStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.RegionStart.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.SimpleFloorPlanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.SimpleFloorPlanner.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.Table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.Table.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/struct.Value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/struct.Value.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/trait.Chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/trait.Chip.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/trait.Layouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/trait.Layouter.html -------------------------------------------------------------------------------- /docs/halo2_proofs/circuit/value/struct.Value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/circuit/value/struct.Value.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/enum.FailureLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/enum.FailureLocation.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/enum.VerifyFailure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/enum.VerifyFailure.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/failure/enum.FailureLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/failure/enum.FailureLocation.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/failure/enum.VerifyFailure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/failure/enum.VerifyFailure.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/gates/struct.CircuitGates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/gates/struct.CircuitGates.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/struct.Column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/struct.Column.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/struct.Constraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/struct.Constraint.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/struct.Gate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/struct.Gate.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/struct.Region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/struct.Region.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/metadata/struct.VirtualCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/metadata/struct.VirtualCell.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/struct.CircuitGates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/struct.CircuitGates.html -------------------------------------------------------------------------------- /docs/halo2_proofs/dev/struct.MockProver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/dev/struct.MockProver.html -------------------------------------------------------------------------------- /docs/halo2_proofs/enum.SerdeFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/enum.SerdeFormat.html -------------------------------------------------------------------------------- /docs/halo2_proofs/helpers/enum.SerdeFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/helpers/enum.SerdeFormat.html -------------------------------------------------------------------------------- /docs/halo2_proofs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/assigned/enum.Assigned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/assigned/enum.Assigned.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/enum.Any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/enum.Any.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/enum.Expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/enum.Expression.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Advice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Advice.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.AdviceQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.AdviceQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Challenge.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Column.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Constraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Constraint.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.ConstraintSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.ConstraintSystem.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Constraints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Constraints.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.FirstPhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.FirstPhase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Fixed.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.FixedQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.FixedQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Gate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Gate.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Instance.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.InstanceQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.InstanceQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.PinnedConstraintSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.PinnedConstraintSystem.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.SecondPhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.SecondPhase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.Selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.Selector.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.TableColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.TableColumn.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.ThirdPhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.ThirdPhase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.VirtualCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.VirtualCell.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/struct.VirtualCells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/struct.VirtualCells.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/trait.Assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/trait.Assignment.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/trait.Circuit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/trait.Circuit.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/trait.ColumnType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/trait.ColumnType.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/trait.FloorPlanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/trait.FloorPlanner.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/circuit/trait.Phase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/circuit/trait.Phase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/enum.Any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/enum.Any.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/enum.Assigned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/enum.Assigned.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/enum.Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/enum.Error.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/enum.Expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/enum.Expression.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/error/enum.Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/error/enum.Error.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/fn.create_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/fn.create_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/fn.keygen_pk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/fn.keygen_pk.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/fn.keygen_vk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/fn.keygen_vk.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/fn.verify_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/fn.verify_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/keygen/fn.keygen_pk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/keygen/fn.keygen_pk.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/keygen/fn.keygen_vk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/keygen/fn.keygen_vk.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/prover/fn.create_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/prover/fn.create_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Advice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Advice.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.AdviceQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.AdviceQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.BatchVerifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.BatchVerifier.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Challenge.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Column.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Constraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Constraint.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.ConstraintSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.ConstraintSystem.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Constraints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Constraints.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.FirstPhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.FirstPhase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Fixed.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.FixedQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.FixedQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Gate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Gate.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Instance.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.InstanceQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.InstanceQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.PinnedConstraintSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.PinnedConstraintSystem.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.PinnedVerificationKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.PinnedVerificationKey.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.ProvingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.ProvingKey.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.SecondPhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.SecondPhase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.Selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.Selector.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.TableColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.TableColumn.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.ThirdPhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.ThirdPhase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.VerifyingKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.VerifyingKey.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.VirtualCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.VirtualCell.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/struct.VirtualCells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/struct.VirtualCells.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/trait.Assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/trait.Assignment.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/trait.Circuit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/trait.Circuit.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/trait.ColumnType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/trait.ColumnType.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/trait.FloorPlanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/trait.FloorPlanner.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/trait.Phase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/trait.Phase.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/verifier/batch/struct.BatchVerifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/verifier/batch/struct.BatchVerifier.html -------------------------------------------------------------------------------- /docs/halo2_proofs/plonk/verifier/fn.verify_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/plonk/verifier/fn.verify_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/struct.Blind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/struct.Blind.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.CommitmentScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.CommitmentScheme.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.MSM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.MSM.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.Params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.Params.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.ParamsProver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.ParamsProver.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.ParamsVerifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.ParamsVerifier.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.Prover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.Prover.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/commitment/trait.Verifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/commitment/trait.Verifier.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/domain/struct.EvaluationDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/domain/struct.EvaluationDomain.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/domain/struct.PinnedEvaluationDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/domain/struct.PinnedEvaluationDomain.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/enum.Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/enum.Error.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/fn.create_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/fn.create_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/fn.verify_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/fn.verify_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/prover/fn.create_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/prover/fn.create_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/struct.IPACommitmentScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/struct.IPACommitmentScheme.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/struct.ParamsIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/struct.ParamsIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/type.ParamsVerifierIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/type.ParamsVerifierIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/commitment/verifier/fn.verify_proof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/commitment/verifier/fn.verify_proof.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/msm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/msm/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/msm/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/msm/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/msm/struct.MSMIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/msm/struct.MSMIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/multiopen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/multiopen/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/multiopen/prover/struct.ProverIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/multiopen/prover/struct.ProverIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/multiopen/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/multiopen/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/multiopen/struct.ProverIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/multiopen/struct.ProverIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/multiopen/struct.VerifierIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/multiopen/struct.VerifierIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/multiopen/verifier/struct.VerifierIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/multiopen/verifier/struct.VerifierIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/strategy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/strategy/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/strategy/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/strategy/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/strategy/struct.Accumulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/strategy/struct.Accumulator.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/strategy/struct.AccumulatorStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/strategy/struct.AccumulatorStrategy.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/strategy/struct.GuardIPA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/strategy/struct.GuardIPA.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/ipa/strategy/struct.SingleStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/ipa/strategy/struct.SingleStrategy.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/commitment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/commitment/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/commitment/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/commitment/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/commitment/struct.KZGCommitmentScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/commitment/struct.KZGCommitmentScheme.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/commitment/struct.ParamsKZG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/commitment/struct.ParamsKZG.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/commitment/type.ParamsVerifierKZG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/commitment/type.ParamsVerifierKZG.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/msm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/msm/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/msm/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/msm/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/msm/struct.DualMSM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/msm/struct.DualMSM.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/msm/struct.MSMKZG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/msm/struct.MSMKZG.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/gwc/prover/struct.ProverGWC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/gwc/prover/struct.ProverGWC.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/gwc/verifier/struct.VerifierGWC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/gwc/verifier/struct.VerifierGWC.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/struct.ProverGWC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/struct.ProverGWC.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/struct.ProverSHPLONK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/struct.ProverSHPLONK.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/struct.VerifierGWC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/struct.VerifierGWC.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/multiopen/struct.VerifierSHPLONK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/multiopen/struct.VerifierSHPLONK.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/strategy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/strategy/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/strategy/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/strategy/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/strategy/struct.AccumulatorStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/strategy/struct.AccumulatorStrategy.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/strategy/struct.GuardKZG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/strategy/struct.GuardKZG.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/kzg/strategy/struct.SingleStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/kzg/strategy/struct.SingleStrategy.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/query/struct.ProverQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/query/struct.ProverQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/query/struct.VerifierQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/query/struct.VerifierQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/strategy/trait.Guard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/strategy/trait.Guard.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/strategy/trait.VerificationStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/strategy/trait.VerificationStrategy.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.Coeff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.Coeff.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.EvaluationDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.EvaluationDomain.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.ExtendedLagrangeCoeff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.ExtendedLagrangeCoeff.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.LagrangeCoeff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.LagrangeCoeff.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.PinnedEvaluationDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.PinnedEvaluationDomain.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.Polynomial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.Polynomial.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.ProverQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.ProverQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.Rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.Rotation.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/struct.VerifierQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/struct.VerifierQuery.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/trait.Basis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/trait.Basis.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/trait.Guard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/trait.Guard.html -------------------------------------------------------------------------------- /docs/halo2_proofs/poly/trait.VerificationStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/poly/trait.VerificationStrategy.html -------------------------------------------------------------------------------- /docs/halo2_proofs/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/index.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/struct.Blake2bRead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/struct.Blake2bRead.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/struct.Blake2bWrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/struct.Blake2bWrite.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/struct.Challenge255.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/struct.Challenge255.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/struct.ChallengeScalar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/struct.ChallengeScalar.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/trait.EncodedChallenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/trait.EncodedChallenge.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/trait.Transcript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/trait.Transcript.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/trait.TranscriptRead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/trait.TranscriptRead.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/trait.TranscriptReadBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/trait.TranscriptReadBuffer.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/trait.TranscriptWrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/trait.TranscriptWrite.html -------------------------------------------------------------------------------- /docs/halo2_proofs/transcript/trait.TranscriptWriterBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2_proofs/transcript/trait.TranscriptWriterBuffer.html -------------------------------------------------------------------------------- /docs/halo2curves/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/all.html -------------------------------------------------------------------------------- /docs/halo2curves/arithmetic/trait.CurveAffineExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/arithmetic/trait.CurveAffineExt.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.BN_X.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.BN_X.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ12_C1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ12_C1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ2_C1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ2_C1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ6_C1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ6_C1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ6_C2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.FROBENIUS_COEFF_FQ6_C2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.NEGATIVE_ONE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.NEGATIVE_ONE.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.SIX_U_PLUS_2_NAF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.SIX_U_PLUS_2_NAF.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/constant.XI_TO_Q_MINUS_1_OVER_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/constant.XI_TO_Q_MINUS_1_OVER_2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/curve/struct.G1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/curve/struct.G1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/curve/struct.G1Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/curve/struct.G1Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/curve/struct.G1Compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/curve/struct.G1Compressed.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/curve/struct.G2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/curve/struct.G2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/curve/struct.G2Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/curve/struct.G2Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/curve/struct.G2Compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/curve/struct.G2Compressed.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/constant.BN_X.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/constant.BN_X.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/constant.SIX_U_PLUS_2_NAF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/constant.SIX_U_PLUS_2_NAF.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/constant.XI_TO_Q_MINUS_1_OVER_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/constant.XI_TO_Q_MINUS_1_OVER_2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/fn.multi_miller_loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/fn.multi_miller_loop.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/fn.pairing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/fn.pairing.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/struct.Bn256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/struct.Bn256.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/struct.G2Prepared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/struct.G2Prepared.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/engine/struct.Gt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/engine/struct.Gt.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/enum.LegendreSymbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/enum.LegendreSymbol.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fn.multi_miller_loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fn.multi_miller_loop.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fn.pairing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fn.pairing.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq/constant.NEGATIVE_ONE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq/constant.NEGATIVE_ONE.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq/struct.Fq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq/struct.Fq.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq12/constant.FROBENIUS_COEFF_FQ12_C1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq12/constant.FROBENIUS_COEFF_FQ12_C1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq12/struct.Fq12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq12/struct.Fq12.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq2/constant.FROBENIUS_COEFF_FQ2_C1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq2/constant.FROBENIUS_COEFF_FQ2_C1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq2/struct.Fq2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq2/struct.Fq2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq2/struct.Fq2Bytes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq2/struct.Fq2Bytes.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq6/constant.FROBENIUS_COEFF_FQ6_C1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq6/constant.FROBENIUS_COEFF_FQ6_C1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq6/constant.FROBENIUS_COEFF_FQ6_C2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq6/constant.FROBENIUS_COEFF_FQ6_C2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fq6/struct.Fq6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fq6/struct.Fq6.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/fr/struct.Fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/fr/struct.Fr.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/index.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Bn256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Bn256.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Fq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Fq.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Fq12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Fq12.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Fq2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Fq2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Fq2Bytes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Fq2Bytes.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Fq6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Fq6.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Fr.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G1.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G1Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G1Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G1Compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G1Compressed.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G2.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G2Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G2Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G2Compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G2Compressed.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.G2Prepared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.G2Prepared.html -------------------------------------------------------------------------------- /docs/halo2curves/bn256/struct.Gt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/bn256/struct.Gt.html -------------------------------------------------------------------------------- /docs/halo2curves/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/index.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.batch_add!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.batch_add!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.batch_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.batch_add.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.field_arithmetic!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.field_arithmetic!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.field_arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.field_arithmetic.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.field_common!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.field_common!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.field_common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.field_common.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.field_specific!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.field_specific!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.field_specific.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.field_specific.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_add_binop_specify_output!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_add_binop_specify_output!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_add_binop_specify_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_add_binop_specify_output.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_additive!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_additive!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_additive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_additive.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_additive_specify_output!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_additive_specify_output!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_additive_specify_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_additive_specify_output.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_multiplicative!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_multiplicative!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_multiplicative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_multiplicative.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_multiplicative_mixed!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_multiplicative_mixed!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_binops_multiplicative_mixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_binops_multiplicative_mixed.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_sub_binop_specify_output!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_sub_binop_specify_output!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.impl_sub_binop_specify_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.impl_sub_binop_specify_output.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.new_curve_impl!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.new_curve_impl!.html -------------------------------------------------------------------------------- /docs/halo2curves/macro.new_curve_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/macro.new_curve_impl.html -------------------------------------------------------------------------------- /docs/halo2curves/pairing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pairing/index.html -------------------------------------------------------------------------------- /docs/halo2curves/pairing/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pairing/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/pairing/trait.Engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pairing/trait.Engine.html -------------------------------------------------------------------------------- /docs/halo2curves/pairing/trait.MillerLoopResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pairing/trait.MillerLoopResult.html -------------------------------------------------------------------------------- /docs/halo2curves/pairing/trait.MultiMillerLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pairing/trait.MultiMillerLoop.html -------------------------------------------------------------------------------- /docs/halo2curves/pairing/trait.PairingCurveAffine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pairing/trait.PairingCurveAffine.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/index.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/pallas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/pallas/index.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/pallas/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/pallas/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/pasta/pallas/type.Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/pallas/type.Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/pallas/type.Base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/pallas/type.Base.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/pallas/type.Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/pallas/type.Point.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/pallas/type.Scalar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/pallas/type.Scalar.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/pasta/struct.Ep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/struct.Ep.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/struct.EpAffine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/struct.EpAffine.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/struct.Eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/struct.Eq.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/struct.EqAffine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/struct.EqAffine.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/struct.Fp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/struct.Fp.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/struct.Fq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/struct.Fq.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/vesta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/vesta/index.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/vesta/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/vesta/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/pasta/vesta/type.Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/vesta/type.Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/vesta/type.Base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/vesta/type.Base.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/vesta/type.Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/vesta/type.Point.html -------------------------------------------------------------------------------- /docs/halo2curves/pasta/vesta/type.Scalar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/pasta/vesta/type.Scalar.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/curve/struct.Secp256k1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/curve/struct.Secp256k1.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/curve/struct.Secp256k1Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/curve/struct.Secp256k1Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/curve/struct.Secp256k1Compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/curve/struct.Secp256k1Compressed.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/fp/struct.Fp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/fp/struct.Fp.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/fq/struct.Fq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/fq/struct.Fq.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/index.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/struct.Fp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/struct.Fp.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/struct.Fq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/struct.Fq.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/struct.Secp256k1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/struct.Secp256k1.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/struct.Secp256k1Affine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/struct.Secp256k1Affine.html -------------------------------------------------------------------------------- /docs/halo2curves/secp256k1/struct.Secp256k1Compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/secp256k1/struct.Secp256k1Compressed.html -------------------------------------------------------------------------------- /docs/halo2curves/serde/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/serde/index.html -------------------------------------------------------------------------------- /docs/halo2curves/serde/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/serde/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/serde/trait.SerdeObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/serde/trait.SerdeObject.html -------------------------------------------------------------------------------- /docs/halo2curves/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/sidebar-items.js -------------------------------------------------------------------------------- /docs/halo2curves/struct.Coordinates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/struct.Coordinates.html -------------------------------------------------------------------------------- /docs/halo2curves/trait.CurveAffine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/trait.CurveAffine.html -------------------------------------------------------------------------------- /docs/halo2curves/trait.CurveAffineExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/trait.CurveAffineExt.html -------------------------------------------------------------------------------- /docs/halo2curves/trait.CurveExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/trait.CurveExt.html -------------------------------------------------------------------------------- /docs/halo2curves/trait.FieldExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/trait.FieldExt.html -------------------------------------------------------------------------------- /docs/halo2curves/trait.Group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/halo2curves/trait.Group.html -------------------------------------------------------------------------------- /docs/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/help.html -------------------------------------------------------------------------------- /docs/implementors/core/clone/trait.Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/clone/trait.Clone.js -------------------------------------------------------------------------------- /docs/implementors/core/cmp/trait.Eq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/cmp/trait.Eq.js -------------------------------------------------------------------------------- /docs/implementors/core/cmp/trait.Ord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/cmp/trait.Ord.js -------------------------------------------------------------------------------- /docs/implementors/core/cmp/trait.PartialEq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/cmp/trait.PartialEq.js -------------------------------------------------------------------------------- /docs/implementors/core/cmp/trait.PartialOrd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/cmp/trait.PartialOrd.js -------------------------------------------------------------------------------- /docs/implementors/core/convert/trait.AsMut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/convert/trait.AsMut.js -------------------------------------------------------------------------------- /docs/implementors/core/convert/trait.AsRef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/convert/trait.AsRef.js -------------------------------------------------------------------------------- /docs/implementors/core/convert/trait.From.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/convert/trait.From.js -------------------------------------------------------------------------------- /docs/implementors/core/convert/trait.TryFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/convert/trait.TryFrom.js -------------------------------------------------------------------------------- /docs/implementors/core/default/trait.Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/default/trait.Default.js -------------------------------------------------------------------------------- /docs/implementors/core/error/trait.Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/error/trait.Error.js -------------------------------------------------------------------------------- /docs/implementors/core/fmt/trait.Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/fmt/trait.Debug.js -------------------------------------------------------------------------------- /docs/implementors/core/fmt/trait.Display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/fmt/trait.Display.js -------------------------------------------------------------------------------- /docs/implementors/core/hash/trait.Hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/hash/trait.Hash.js -------------------------------------------------------------------------------- /docs/implementors/core/iter/traits/accum/trait.Sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/iter/traits/accum/trait.Sum.js -------------------------------------------------------------------------------- /docs/implementors/core/iter/traits/collect/trait.FromIterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/iter/traits/collect/trait.FromIterator.js -------------------------------------------------------------------------------- /docs/implementors/core/iter/traits/collect/trait.IntoIterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/iter/traits/collect/trait.IntoIterator.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.Copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.Copy.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.Freeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.Freeze.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.Send.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.StructuralEq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.StructuralEq.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.StructuralPartialEq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.StructuralPartialEq.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.Sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.Sync.js -------------------------------------------------------------------------------- /docs/implementors/core/marker/trait.Unpin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/marker/trait.Unpin.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.Add.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.AddAssign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.AddAssign.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.Mul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.Mul.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.MulAssign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.MulAssign.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.Neg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.Neg.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.Sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.Sub.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/arith/trait.SubAssign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/arith/trait.SubAssign.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/deref/trait.Deref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/deref/trait.Deref.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/deref/trait.DerefMut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/deref/trait.DerefMut.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/drop/trait.Drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/drop/trait.Drop.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/index/trait.Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/index/trait.Index.js -------------------------------------------------------------------------------- /docs/implementors/core/ops/index/trait.IndexMut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/ops/index/trait.IndexMut.js -------------------------------------------------------------------------------- /docs/implementors/core/panic/unwind_safe/trait.RefUnwindSafe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/panic/unwind_safe/trait.RefUnwindSafe.js -------------------------------------------------------------------------------- /docs/implementors/core/panic/unwind_safe/trait.UnwindSafe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/core/panic/unwind_safe/trait.UnwindSafe.js -------------------------------------------------------------------------------- /docs/implementors/ff/trait.Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/ff/trait.Field.js -------------------------------------------------------------------------------- /docs/implementors/ff/trait.PrimeField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/ff/trait.PrimeField.js -------------------------------------------------------------------------------- /docs/implementors/group/cofactor/trait.CofactorCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/cofactor/trait.CofactorCurve.js -------------------------------------------------------------------------------- /docs/implementors/group/cofactor/trait.CofactorCurveAffine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/cofactor/trait.CofactorCurveAffine.js -------------------------------------------------------------------------------- /docs/implementors/group/cofactor/trait.CofactorGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/cofactor/trait.CofactorGroup.js -------------------------------------------------------------------------------- /docs/implementors/group/prime/trait.PrimeCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/prime/trait.PrimeCurve.js -------------------------------------------------------------------------------- /docs/implementors/group/prime/trait.PrimeCurveAffine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/prime/trait.PrimeCurveAffine.js -------------------------------------------------------------------------------- /docs/implementors/group/prime/trait.PrimeGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/prime/trait.PrimeGroup.js -------------------------------------------------------------------------------- /docs/implementors/group/trait.Curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/trait.Curve.js -------------------------------------------------------------------------------- /docs/implementors/group/trait.Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/trait.Group.js -------------------------------------------------------------------------------- /docs/implementors/group/trait.GroupEncoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/trait.GroupEncoding.js -------------------------------------------------------------------------------- /docs/implementors/group/trait.UncompressedEncoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/group/trait.UncompressedEncoding.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/circuit/trait.Layouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/circuit/trait.Layouter.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/plonk/circuit/trait.Assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/plonk/circuit/trait.Assignment.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/plonk/circuit/trait.ColumnType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/plonk/circuit/trait.ColumnType.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/plonk/circuit/trait.FloorPlanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/plonk/circuit/trait.FloorPlanner.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/plonk/circuit/trait.Phase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/plonk/circuit/trait.Phase.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.CommitmentScheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.CommitmentScheme.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.MSM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.MSM.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.Params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.Params.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.ParamsProver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.ParamsProver.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.ParamsVerifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.ParamsVerifier.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.Prover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.Prover.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/commitment/trait.Verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/commitment/trait.Verifier.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/strategy/trait.Guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/strategy/trait.Guard.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/poly/trait.Basis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/poly/trait.Basis.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/transcript/trait.EncodedChallenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/transcript/trait.EncodedChallenge.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/transcript/trait.Transcript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/transcript/trait.Transcript.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/transcript/trait.TranscriptRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/transcript/trait.TranscriptRead.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/transcript/trait.TranscriptReadBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/transcript/trait.TranscriptReadBuffer.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/transcript/trait.TranscriptWrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/transcript/trait.TranscriptWrite.js -------------------------------------------------------------------------------- /docs/implementors/halo2_proofs/transcript/trait.TranscriptWriterBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2_proofs/transcript/trait.TranscriptWriterBuffer.js -------------------------------------------------------------------------------- /docs/implementors/halo2curves/arithmetic/trait.CurveAffineExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2curves/arithmetic/trait.CurveAffineExt.js -------------------------------------------------------------------------------- /docs/implementors/halo2curves/pairing/trait.Engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2curves/pairing/trait.Engine.js -------------------------------------------------------------------------------- /docs/implementors/halo2curves/pairing/trait.MillerLoopResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2curves/pairing/trait.MillerLoopResult.js -------------------------------------------------------------------------------- /docs/implementors/halo2curves/pairing/trait.MultiMillerLoop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2curves/pairing/trait.MultiMillerLoop.js -------------------------------------------------------------------------------- /docs/implementors/halo2curves/pairing/trait.PairingCurveAffine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2curves/pairing/trait.PairingCurveAffine.js -------------------------------------------------------------------------------- /docs/implementors/halo2curves/serde/trait.SerdeObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/halo2curves/serde/trait.SerdeObject.js -------------------------------------------------------------------------------- /docs/implementors/pasta_curves/arithmetic/curves/trait.CurveAffine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/pasta_curves/arithmetic/curves/trait.CurveAffine.js -------------------------------------------------------------------------------- /docs/implementors/pasta_curves/arithmetic/curves/trait.CurveExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/pasta_curves/arithmetic/curves/trait.CurveExt.js -------------------------------------------------------------------------------- /docs/implementors/pasta_curves/arithmetic/fields/trait.FieldExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/pasta_curves/arithmetic/fields/trait.FieldExt.js -------------------------------------------------------------------------------- /docs/implementors/pasta_curves/arithmetic/fields/trait.SqrtRatio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/pasta_curves/arithmetic/fields/trait.SqrtRatio.js -------------------------------------------------------------------------------- /docs/implementors/pasta_curves/arithmetic/trait.Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/pasta_curves/arithmetic/trait.Group.js -------------------------------------------------------------------------------- /docs/implementors/serde/de/trait.Deserialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/serde/de/trait.Deserialize.js -------------------------------------------------------------------------------- /docs/implementors/serde/ser/trait.Serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/serde/ser/trait.Serialize.js -------------------------------------------------------------------------------- /docs/implementors/subtle/trait.ConditionallySelectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/subtle/trait.ConditionallySelectable.js -------------------------------------------------------------------------------- /docs/implementors/subtle/trait.ConstantTimeEq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/implementors/subtle/trait.ConstantTimeEq.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/light.css -------------------------------------------------------------------------------- /docs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/main.js -------------------------------------------------------------------------------- /docs/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/normalize.css -------------------------------------------------------------------------------- /docs/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/noscript.css -------------------------------------------------------------------------------- /docs/poseidon/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/all.html -------------------------------------------------------------------------------- /docs/poseidon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/index.html -------------------------------------------------------------------------------- /docs/poseidon/poseidon/struct.Poseidon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/poseidon/struct.Poseidon.html -------------------------------------------------------------------------------- /docs/poseidon/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/sidebar-items.js -------------------------------------------------------------------------------- /docs/poseidon/spec/struct.MDSMatrices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/spec/struct.MDSMatrices.html -------------------------------------------------------------------------------- /docs/poseidon/spec/struct.MDSMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/spec/struct.MDSMatrix.html -------------------------------------------------------------------------------- /docs/poseidon/spec/struct.SparseMDSMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/spec/struct.SparseMDSMatrix.html -------------------------------------------------------------------------------- /docs/poseidon/spec/struct.Spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/spec/struct.Spec.html -------------------------------------------------------------------------------- /docs/poseidon/spec/struct.State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/spec/struct.State.html -------------------------------------------------------------------------------- /docs/poseidon/struct.MDSMatrices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/struct.MDSMatrices.html -------------------------------------------------------------------------------- /docs/poseidon/struct.MDSMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/struct.MDSMatrix.html -------------------------------------------------------------------------------- /docs/poseidon/struct.Poseidon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/struct.Poseidon.html -------------------------------------------------------------------------------- /docs/poseidon/struct.SparseMDSMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/struct.SparseMDSMatrix.html -------------------------------------------------------------------------------- /docs/poseidon/struct.Spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/struct.Spec.html -------------------------------------------------------------------------------- /docs/poseidon/struct.State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/poseidon/struct.State.html -------------------------------------------------------------------------------- /docs/rust-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/rust-logo.svg -------------------------------------------------------------------------------- /docs/rustdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/rustdoc.css -------------------------------------------------------------------------------- /docs/search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/search-index.js -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/search.js -------------------------------------------------------------------------------- /docs/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/settings.css -------------------------------------------------------------------------------- /docs/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/settings.html -------------------------------------------------------------------------------- /docs/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/settings.js -------------------------------------------------------------------------------- /docs/source-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/source-files.js -------------------------------------------------------------------------------- /docs/source-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/source-script.js -------------------------------------------------------------------------------- /docs/src/halo2/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2/lib.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/arithmetic.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/arithmetic.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/circuit.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/circuit.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/circuit/floor_planner.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/circuit/floor_planner.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/circuit/floor_planner/single_pass.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/circuit/floor_planner/single_pass.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/circuit/layouter.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/circuit/layouter.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/circuit/value.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/circuit/value.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/dev.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/dev.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/dev/failure.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/dev/failure.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/dev/failure/emitter.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/dev/failure/emitter.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/dev/gates.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/dev/gates.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/dev/metadata.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/dev/metadata.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/dev/util.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/dev/util.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/helpers.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/helpers.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/lib.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/multicore.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/multicore.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/assigned.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/assigned.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/circuit.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/circuit.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/circuit/compress_selectors.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/circuit/compress_selectors.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/error.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/error.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/evaluation.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/evaluation.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/keygen.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/keygen.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/lookup.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/lookup.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/lookup/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/lookup/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/lookup/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/lookup/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/permutation.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/permutation.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/permutation/keygen.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/permutation/keygen.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/permutation/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/permutation/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/permutation/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/permutation/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/vanishing.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/vanishing.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/vanishing/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/vanishing/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/vanishing/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/vanishing/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/plonk/verifier/batch.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/plonk/verifier/batch.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/commitment.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/commitment.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/domain.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/domain.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/commitment.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/commitment.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/commitment/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/commitment/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/commitment/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/commitment/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/mod.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/msm.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/msm.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/multiopen.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/multiopen.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/multiopen/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/multiopen/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/multiopen/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/multiopen/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/ipa/strategy.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/ipa/strategy.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/commitment.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/commitment.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/mod.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/msm.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/msm.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen/gwc.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen/gwc.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen/gwc/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen/gwc/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen/gwc/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen/gwc/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen/shplonk.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen/shplonk.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen/shplonk/prover.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen/shplonk/prover.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/multiopen/shplonk/verifier.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/multiopen/shplonk/verifier.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/kzg/strategy.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/kzg/strategy.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/query.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/query.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/poly/strategy.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/poly/strategy.rs.html -------------------------------------------------------------------------------- /docs/src/halo2_proofs/transcript.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2_proofs/transcript.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/arithmetic.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/arithmetic.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/curve.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/curve.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/engine.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/engine.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/fq.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/fq.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/fq12.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/fq12.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/fq2.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/fq2.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/fq6.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/fq6.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/fr.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/fr.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/bn256/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/bn256/mod.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/derive/curve.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/derive/curve.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/derive/field.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/derive/field.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/derive/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/derive/mod.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/lib.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/pairing.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/pairing.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/pasta/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/pasta/mod.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/secp256k1/curve.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/secp256k1/curve.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/secp256k1/fp.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/secp256k1/fp.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/secp256k1/fq.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/secp256k1/fq.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/secp256k1/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/secp256k1/mod.rs.html -------------------------------------------------------------------------------- /docs/src/halo2curves/serde.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/halo2curves/serde.rs.html -------------------------------------------------------------------------------- /docs/src/poseidon/grain.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/poseidon/grain.rs.html -------------------------------------------------------------------------------- /docs/src/poseidon/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/poseidon/lib.rs.html -------------------------------------------------------------------------------- /docs/src/poseidon/matrix.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/poseidon/matrix.rs.html -------------------------------------------------------------------------------- /docs/src/poseidon/permutation.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/poseidon/permutation.rs.html -------------------------------------------------------------------------------- /docs/src/poseidon/poseidon.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/poseidon/poseidon.rs.html -------------------------------------------------------------------------------- /docs/src/poseidon/spec.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/src/poseidon/spec.rs.html -------------------------------------------------------------------------------- /docs/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/storage.js -------------------------------------------------------------------------------- /docs/toggle-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/toggle-minus.svg -------------------------------------------------------------------------------- /docs/toggle-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/toggle-plus.svg -------------------------------------------------------------------------------- /docs/wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/docs/wheel.svg -------------------------------------------------------------------------------- /halo2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2/CHANGELOG.md -------------------------------------------------------------------------------- /halo2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2/Cargo.toml -------------------------------------------------------------------------------- /halo2/katex-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2/katex-header.html -------------------------------------------------------------------------------- /halo2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2/src/lib.rs -------------------------------------------------------------------------------- /halo2_proofs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/CHANGELOG.md -------------------------------------------------------------------------------- /halo2_proofs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/Cargo.toml -------------------------------------------------------------------------------- /halo2_proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/README.md -------------------------------------------------------------------------------- /halo2_proofs/benches/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/benches/arithmetic.rs -------------------------------------------------------------------------------- /halo2_proofs/benches/dev_lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/benches/dev_lookup.rs -------------------------------------------------------------------------------- /halo2_proofs/benches/fft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/benches/fft.rs -------------------------------------------------------------------------------- /halo2_proofs/benches/hashtocurve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/benches/hashtocurve.rs -------------------------------------------------------------------------------- /halo2_proofs/benches/plonk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/benches/plonk.rs -------------------------------------------------------------------------------- /halo2_proofs/examples/circuit-layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/examples/circuit-layout.rs -------------------------------------------------------------------------------- /halo2_proofs/examples/cost-model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/examples/cost-model.rs -------------------------------------------------------------------------------- /halo2_proofs/examples/serialization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/examples/serialization.rs -------------------------------------------------------------------------------- /halo2_proofs/examples/shuffle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/examples/shuffle.rs -------------------------------------------------------------------------------- /halo2_proofs/examples/simple-example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/examples/simple-example.rs -------------------------------------------------------------------------------- /halo2_proofs/examples/two-chip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/examples/two-chip.rs -------------------------------------------------------------------------------- /halo2_proofs/katex-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/katex-header.html -------------------------------------------------------------------------------- /halo2_proofs/proptest-regressions/plonk/assigned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/proptest-regressions/plonk/assigned.txt -------------------------------------------------------------------------------- /halo2_proofs/proptest-regressions/plonk/circuit/compress_selectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/proptest-regressions/plonk/circuit/compress_selectors.txt -------------------------------------------------------------------------------- /halo2_proofs/src/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/arithmetic.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit/floor_planner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit/floor_planner.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit/floor_planner/single_pass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit/floor_planner/single_pass.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit/floor_planner/v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit/floor_planner/v1.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit/floor_planner/v1/strategy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit/floor_planner/v1/strategy.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit/layouter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit/layouter.rs -------------------------------------------------------------------------------- /halo2_proofs/src/circuit/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/circuit/value.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/cost.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/cost.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/failure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/failure.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/failure/emitter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/failure/emitter.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/gates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/gates.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/graph.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/graph/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/graph/layout.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/metadata.rs -------------------------------------------------------------------------------- /halo2_proofs/src/dev/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/dev/util.rs -------------------------------------------------------------------------------- /halo2_proofs/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/helpers.rs -------------------------------------------------------------------------------- /halo2_proofs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/lib.rs -------------------------------------------------------------------------------- /halo2_proofs/src/multicore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/multicore.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/assigned.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/assigned.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/circuit.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/circuit/compress_selectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/circuit/compress_selectors.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/error.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/evaluation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/evaluation.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/keygen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/keygen.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/lookup.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/lookup/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/lookup/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/lookup/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/lookup/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/permutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/permutation.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/permutation/keygen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/permutation/keygen.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/permutation/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/permutation/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/permutation/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/permutation/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/vanishing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/vanishing.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/vanishing/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/vanishing/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/vanishing/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/vanishing/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/plonk/verifier/batch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/plonk/verifier/batch.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/commitment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/commitment.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/domain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/domain.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/evaluator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/evaluator.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/commitment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/commitment.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/commitment/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/commitment/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/commitment/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/commitment/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/mod.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/msm.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/multiopen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/multiopen.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/multiopen/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/multiopen/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/multiopen/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/multiopen/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/ipa/strategy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/ipa/strategy.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/commitment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/commitment.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/mod.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/msm.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen/gwc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen/gwc.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen/gwc/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen/gwc/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen/gwc/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen/gwc/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen/shplonk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen/shplonk.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen/shplonk/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen/shplonk/prover.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/multiopen/shplonk/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/multiopen/shplonk/verifier.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/kzg/strategy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/kzg/strategy.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/multiopen_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/multiopen_test.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/query.rs -------------------------------------------------------------------------------- /halo2_proofs/src/poly/strategy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/poly/strategy.rs -------------------------------------------------------------------------------- /halo2_proofs/src/transcript.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/src/transcript.rs -------------------------------------------------------------------------------- /halo2_proofs/tests/plonk_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/halo2_proofs/tests/plonk_api.rs -------------------------------------------------------------------------------- /primitives/poseidon/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock -------------------------------------------------------------------------------- /primitives/poseidon/.rustfmt.toml: -------------------------------------------------------------------------------- 1 | wrap_comments = true -------------------------------------------------------------------------------- /primitives/poseidon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/Cargo.toml -------------------------------------------------------------------------------- /primitives/poseidon/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/LICENSE-APACHE -------------------------------------------------------------------------------- /primitives/poseidon/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/LICENSE-MIT -------------------------------------------------------------------------------- /primitives/poseidon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/README.md -------------------------------------------------------------------------------- /primitives/poseidon/src/grain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/src/grain.rs -------------------------------------------------------------------------------- /primitives/poseidon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/src/lib.rs -------------------------------------------------------------------------------- /primitives/poseidon/src/matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/src/matrix.rs -------------------------------------------------------------------------------- /primitives/poseidon/src/permutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/src/permutation.rs -------------------------------------------------------------------------------- /primitives/poseidon/src/poseidon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/src/poseidon.rs -------------------------------------------------------------------------------- /primitives/poseidon/src/spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/halo2-cq/HEAD/primitives/poseidon/src/spec.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2022-10-28 --------------------------------------------------------------------------------