Shorten thread name

This commit is contained in:
Magnus Ulimoen 2021-08-18 12:39:08 +00:00
parent 4f0af1f6c1
commit e7222a99b5
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ impl BaseSystem {
.zip(push_channels) .zip(push_channels)
.enumerate() .enumerate()
{ {
let builder = std::thread::Builder::new().name(format!("eulersolver: {}", name)); let builder = std::thread::Builder::new().name(format!("mg: {}", name));
let boundary_conditions = bt.zip(chan).map(|(bt, chan)| match bt { let boundary_conditions = bt.zip(chan).map(|(bt, chan)| match bt {
euler::BoundaryCharacteristic::This => DistributedBoundaryConditions::This, euler::BoundaryCharacteristic::This => DistributedBoundaryConditions::This,