refactor: Replace some simp with simp only

This commit is contained in:
jstoobysmith 2024-09-04 15:33:54 -04:00
parent da5e0e3f00
commit 49d089d4cd
17 changed files with 56 additions and 41 deletions

View file

@ -63,13 +63,17 @@ unsafe def processAllFiles : IO Unit := do
((IO.asTask $ IO.Process.run
{cmd := "lake", args := #["exe", "free_simps", f.toString]}), f)
tasks.toList.enum.forM fun (n, (t, path)) => do
println! "{n} of {tasks.toList.length}: {path}"
let tn ← IO.wait (← t)
match tn with
| .ok x => println! x
| .ok x =>
if x ≠ "" then
println! "{n} of {tasks.toList.length}: {path}"
println! x
| .error _ => println! "Error"
unsafe def main (args : List String) : IO Unit := do
match args with
| [path] => transverseTactics path visitTacticInfo
| _ => processAllFiles
| _ =>
processAllFiles
IO.println "Finished"