| 351 | std::mt19937 gen; |
| 352 | |
| 353 | int init() { |
| 354 | csnd::constr(&norm, inargs[0], inargs[1]); |
| 355 | csnd::constr(&gen, inargs[2]); |
| 356 | csound->plugin_deinit(this); |
| 357 | return OK; |
| 358 | } |
| 359 | |
| 360 | int deinit() { |
| 361 | csnd::destr(&norm); |
nothing calls this directly
no test coverage detected