adamantine-sim / adamantine

Software to simulate heat transfer for additive manufacturing
https://adamantine-sim.github.io/adamantine/
Other
32 stars 9 forks source link

Wait for files to appear instead of throwing an error #237

Closed Rombur closed 11 months ago

Rombur commented 11 months ago

This PR does two things:

  1. replace boost::filesystem with std::filesystem. std::filesystem is part of C++17 but before gcc 9 it was implemented in a separate library that we had to link against. Since gcc 8 is quite old (Ubuntu 20.04 is using gcc 9.3), it's safe to make the chang.
  2. wait for the input files to appear instead of throwing an error

CI