pub fn debug_delay() {
#[cfg(feature = "runtime_validation")]
{
use std::thread;
use std::time::Duration;
use rand::{thread_rng, Rng};
let mut rng = thread_rng();
match rng.gen_range(0..100) {
0..=90 => thread::yield_now(),
_ => thread::sleep(Duration::from_millis(5)),
}
}
}