| 62 | } |
| 63 | |
| 64 | void |
| 65 | DefaultProgramGenerator::initialize() |
| 66 | { |
| 67 | if (DeltaMonitor::is_delta()) { |
| 68 | DeltaMonitor::CreateRndNumInstance(seed_); |
| 69 | } |
| 70 | else { |
| 71 | RandomNumber::CreateInstance(rDefaultRndNumGenerator, seed_); |
| 72 | } |
| 73 | if (CGOptions::get_reducer()) { |
| 74 | output_mgr_ = new ReducerOutputMgr(); |
| 75 | } else { |
| 76 | output_mgr_ = DefaultOutputMgr::CreateInstance(); |
| 77 | } |
| 78 | assert(output_mgr_); |
| 79 | |
| 80 | ExtensionMgr::CreateExtension(); |
| 81 | } |
| 82 | |
| 83 | std::string |
| 84 | DefaultProgramGenerator::get_count_prefix(const std::string &) |
nothing calls this directly
no outgoing calls
no test coverage detected