mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-09 09:13:09 +00:00
Add todo for public inputs
This commit is contained in:
parent
8ae664d94f
commit
747f1875af
@ -274,7 +274,6 @@ impl<F: Extendable<D>, const D: usize> CircuitBuilder<F, D> {
|
||||
}
|
||||
|
||||
let wire_partitions = target_partitions.to_wire_partitions();
|
||||
|
||||
wire_partitions.get_sigma_polys(degree_log, k_is)
|
||||
}
|
||||
|
||||
|
||||
@ -135,6 +135,7 @@ impl<F: Field> PartialWitness<F> {
|
||||
F: Extendable<D>,
|
||||
{
|
||||
for &(a, b) in copy_constraints {
|
||||
// TODO: Take care of public inputs once they land.
|
||||
if let (Target::Wire(wa), Target::Wire(wb)) = (a, b) {
|
||||
let va = self.target_values.get(&a).copied().unwrap_or(F::ZERO);
|
||||
let vb = self.target_values.get(&b).copied().unwrap_or(F::ZERO);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user