Update indicatif for multi-progressbar

This commit is contained in:
Magnus Ulimoen 2021-08-17 13:15:36 +00:00
parent 05cb455108
commit ed81ba995f
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ euler = { path = "../euler", features = ["serde1"] }
hdf5 = "0.7.0" hdf5 = "0.7.0"
integrate = { path = "../utils/integrate" } integrate = { path = "../utils/integrate" }
rayon = "1.3.0" rayon = "1.3.0"
indicatif = "0.15.0" indicatif = "0.17.0-beta.1"
ndarray = { version = "0.14.0", features = ["serde"] } ndarray = { version = "0.14.0", features = ["serde"] }
serde = { version = "1.0.115", features = ["derive"] } serde = { version = "1.0.115", features = ["derive"] }
json5 = "0.3.0" json5 = "0.3.0"

View File

@ -412,7 +412,7 @@ impl System {
for pb in pbs.into_iter() { for pb in pbs.into_iter() {
pb.finish_and_clear() pb.finish_and_clear()
} }
target.join_and_clear().unwrap(); target.clear().unwrap();
} }
} }
} }