| 19 | static const char* PARAM_KEY = "param-key"; |
| 20 | |
| 21 | struct NumsGParam : public GParam { |
| 22 | std::vector<int> random_nums_ {}; // 随机生成的数字信息 |
| 23 | int map_results_[MAP_SIZE][MAX_NUM] = {}; // 用于记录 map 处理结果的信息 |
| 24 | }; |
| 25 | |
| 26 | |
| 27 | class GenerateGNode : public GNode { |
nothing calls this directly
no outgoing calls
no test coverage detected