pub trait PlacementSolution<C: LayoutBase> {
    // Required methods
    fn get_positions(&self) -> HashMap<C::CellInstId, SimpleTransform<C::Coord>>;
    fn placement_status(&self, cell_instance: &C::CellInstId) -> PlacementStatus;
}
Expand description

Representation of the placement solution.

Required Methods§

Implementors§