circuit.rs: crate visibility modifications from code review

Co-authored-by: Daira Hopwood <daira@jacaranda.org>
Co-authored-by: ebfull <ewillbefull@gmail.com>
This commit is contained in:
therealyingtong 2023-04-04 09:27:32 +07:00
parent c3c57c6e07
commit 72ce521084
2 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,7 @@ pub mod floor_planner;
pub use floor_planner::single_pass::SimpleFloorPlanner;
pub mod layouter;
pub mod table_layouter;
mod table_layouter;
pub use table_layouter::TableLayouter;

View File

@ -6,6 +6,7 @@ use std::fmt;
use ff::Field;
pub use super::table_layouter::TableLayouter;
use super::{Cell, RegionIndex, Value};
use crate::plonk::{Advice, Any, Assigned, Column, Error, Fixed, Instance, Selector};