From d3f33baed3e5a1999e8500677ed135bab66e5809 Mon Sep 17 00:00:00 2001 From: John Guibas Date: Thu, 24 Aug 2023 10:45:49 -0700 Subject: [PATCH] make generate partial_witness pub --- plonky2/src/iop/generator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/src/iop/generator.rs b/plonky2/src/iop/generator.rs index 478c5ff5..10293339 100644 --- a/plonky2/src/iop/generator.rs +++ b/plonky2/src/iop/generator.rs @@ -16,7 +16,7 @@ use crate::util::serialization::{Buffer, IoResult, Read, Write}; /// Given a `PartitionWitness` that has only inputs set, populates the rest of the witness using the /// given set of generators. -pub(crate) fn generate_partial_witness< +pub fn generate_partial_witness< 'a, F: RichField + Extendable, C: GenericConfig,