Driver: simplify the StimuliAdapter

it was basically dead code.
This commit is contained in:
2022-08-12 14:42:56 -07:00
parent 31fd83eb34
commit e141047bec
3 changed files with 6 additions and 66 deletions

View File

@@ -143,8 +143,6 @@ fn main() {
// render a couple CSV files: one very detailed and the other more sparsely detailed
driver.add_csv_renderer(&*format!("{}meas.csv", prefix), 200, None);
driver.add_csv_renderer(&*format!("{}meas-sparse.csv", prefix), 1600, None);
// how frequently to re-evaluate the stimulus (Sample & Hold interpolation between evaluations)
driver.set_steps_per_stim(1000);
driver.step_until(Seconds(duration));
}