Randomizer() : min(0), max(1) {}
| 101 | |
| 102 | // Randomizer() : min(0), max(1) {} |
| 103 | ModuleRandomizer(double min_, double max_) : min(min_), max(max_) {} |
| 104 | |
| 105 | NumericVector get(int n) { |
| 106 | RNGScope scope; |
nothing calls this directly
no outgoing calls
no test coverage detected