options.hpp 238 B

12345678910111213
  1. #ifndef __OPTIONS_HPP__
  2. #define __OPTIONS_HPP__
  3. struct PRACOptions {
  4. bool preprocessing;
  5. int num_threads;
  6. bool expand_rdpfs;
  7. PRACOptions() : preprocessing(false), num_threads(1),
  8. expand_rdpfs(true) {}
  9. };
  10. #endif