TRIQS/triqs_cthyb 4.0.0
A TRIQS application
Loading...
Searching...
No Matches
util.hpp
1#include <fstream>
2
3inline bool exists(std::string filename) {
4 std::ifstream f(filename.c_str());
5 bool e = f.good();
6 if (e) f.close();
7 return e;
8}