Skip to content

Commit

Permalink
chore: remove redundant println in tests
Browse files Browse the repository at this point in the history
Signed-off-by: cailue <cailue@bupt.edu.cn>
  • Loading branch information
ClSlaid committed Oct 6, 2024
1 parent cae7ff6 commit ef305f9
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/sim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ mod tests {

aig.add_output(x1);

println!("{}", aig.to_string());
let pattern = vec![
vec![true, true], // step 0 reset to initial state
vec![false, true],
Expand Down Expand Up @@ -337,12 +336,6 @@ mod tests {
vec![true, true, true, true, true],
];

println!(
"LUT vars: {}\n LUT size: {}",
truth.num_vars(),
truth.num_bits()
);

let expected: Vec<Vec<_>> = vec![0, 0, 0, 1, 1]
.into_iter()
.map(|b| vec![b == 1])
Expand Down

0 comments on commit ef305f9

Please sign in to comment.