options.hpp 298 B

12345678910111213141516
  1. #ifndef __OPTIONS_HPP__
  2. #define __OPTIONS_HPP__
  3. #include "types.hpp"
  4. struct PRACOptions {
  5. ProcessingMode mode;
  6. int num_threads;
  7. bool expand_rdpfs;
  8. bool use_xor_db;
  9. PRACOptions() : mode(MODE_ONLINE), num_threads(1),
  10. expand_rdpfs(true), use_xor_db(false) {}
  11. };
  12. #endif