| 13 | std::default_random_engine eng(rd()); |
| 14 | |
| 15 | double random(double l, double r) { |
| 16 | std::uniform_real_distribution<float> distr(l, r); |
| 17 | return distr(eng); |
| 18 | } |
| 19 | |
| 20 | void Fish::debug_msg(std::string str){ |
| 21 | return; |
no outgoing calls
no test coverage detected