Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulk29 committed Aug 5, 2024
1 parent 8f17f99 commit 9b5bbe4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions substrate/src/simulation/waveform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ pub trait TimeWaveform {
let idx = self
.time_index_before(t)
.expect("cannot extrapolate to the requested time");
println!("idx = {idx}");
debug_assert!(
idx < self.len() - 1,
"cannot extrapolate beyond end of signal"
Expand Down Expand Up @@ -767,7 +766,6 @@ where
let mut x;
while lo <= hi {
let mid = (lo + hi) / 2;
println!("lo = {lo}, hi = {hi}, mid = {mid}");
x = data.get(mid).unwrap().t();
match target.partial_cmp(&x)? {
Ordering::Less => hi = mid - 1,
Expand Down

0 comments on commit 9b5bbe4

Please sign in to comment.