| 36 | using namespace lar; |
| 37 | bool FusePreprocessOption::m_valid; |
| 38 | void FusePreprocessOption::update() { |
| 39 | m_option_name = "fuse_preprocess"; |
| 40 | enable_fuse_preprocess = FLAGS_enable_fuse_preprocess; |
| 41 | m_option = {{"enable_fuse_preprocess", lar::Bool::make(false)}}; |
| 42 | std::static_pointer_cast<lar::Bool>(m_option["enable_fuse_preprocess"]) |
| 43 | ->set_value(FLAGS_enable_fuse_preprocess); |
| 44 | } |
| 45 | |
| 46 | bool FusePreprocessOption::is_valid() { |
| 47 | bool ret = FLAGS_enable_fuse_preprocess; |
no test coverage detected