I moved the CHiMaD benchmarks to their older folder with applications/ to avoid clutter when we eventually support the other benchmarks. This way, we can also have a folder for each sub-benchmark (1a, 1b, etc.) even when very little might be changing. It would also make it more clear what benchmarks we do support.
While I was at it, I updated the CMakeLists.txt so that we only need one main.cc for all applications. This is done through the a addition of phaseField/applications/CMakeLists.txt which adds all subdirectories in the applications folder. Then in the CMakeLists.txt at the application level, I specify the path for the main.cc file.
This should make it way easier to support higher order elements (less copy and paste).
I moved the CHiMaD benchmarks to their older folder with
applications/
to avoid clutter when we eventually support the other benchmarks. This way, we can also have a folder for each sub-benchmark (1a, 1b, etc.) even when very little might be changing. It would also make it more clear what benchmarks we do support.While I was at it, I updated the
CMakeLists.txt
so that we only need one main.cc for all applications. This is done through the a addition ofphaseField/applications/CMakeLists.txt
which adds all subdirectories in the applications folder. Then in theCMakeLists.txt
at the application level, I specify the path for themain.cc
file.This should make it way easier to support higher order elements (less copy and paste).