MCPcopy Create free account
hub / github.com/csmith-project/csmith / DefaultProgramGenerator

Class DefaultProgramGenerator

src/DefaultProgramGenerator.h:37–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35class OutputMgr;
36
37class DefaultProgramGenerator : public AbsProgramGenerator {
38public:
39 DefaultProgramGenerator(int argc, char *argv[], unsigned long seed);
40
41 virtual ~DefaultProgramGenerator();
42
43 virtual OutputMgr* getOutputMgr() { return output_mgr_; }
44
45 virtual void goGenerator();
46
47 virtual void initialize();
48
49 virtual std::string get_count_prefix(const std::string &name);
50
51private:
52 int argc_;
53
54 char **argv_;
55
56 unsigned long seed_;
57
58 OutputMgr *output_mgr_;
59};
60
61#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected