Wrapper for the square function to reduce verbosity.
| 31 | |
| 32 | // Wrapper for the square function to reduce verbosity. |
| 33 | inline double Square(double x) { return x * x; } |
| 34 | |
| 35 | // Given the average time between output events (`output_time`), the average |
| 36 | // time between input events (`input_time`) and the buffer size, the method |
no outgoing calls