pub fn simulate<B: Block>(uut: &mut B, max_iters: usize) -> bool
Expand description

Update changes to a circuit until it stabilizes

Arguments

  • uut - reference to the circuit - must implement the Block trait
  • max_iters - the maximum number of iterations to try and stabilize the circuit

Returns true if the circuit stabilizes, and false if not. Generally you won’t need this function directly.