options.hpp 278 B

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