| 29 | }; |
| 30 | |
| 31 | void AnalysisStructures::run() |
| 32 | { |
| 33 | stop = false; |
| 34 | |
| 35 | Generator g; |
| 36 | setupGenerator(&g, wi.mc, wi.large); |
| 37 | |
| 38 | for (idx = 0; idx < (long)seeds.size(); idx++) |
| 39 | { |
| 40 | if (stop) break; |
| 41 | wi.seed = seeds[idx]; |
| 42 | if (quad) |
| 43 | runQuads(&g); |
| 44 | else |
| 45 | runStructs(&g); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void AnalysisStructures::runStructs(Generator *g) |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected