Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rtjoa committed Sep 29, 2023
1 parent f4bd0fb commit 24cdd6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,10 @@ impl Optimizer {

pub fn make_optimizer_for(&mut self, program: &str) -> String {
//let schedule = "(run 3)";
let schedule = format!("(run-schedule (repeat {} cfold (saturate subst)))", self.num_iters);
let schedule = format!(
"(run-schedule (repeat {} cfold (saturate subst)))",
self.num_iters
);
format!(
"
(datatype Type
Expand Down

0 comments on commit 24cdd6c

Please sign in to comment.