rename A_VERSION_{C,EX} to A_VERSION_{0,1,2,3,4}
[liba.git] / javascript / test / lpf.js
bloba24456e61e4487aafc271d78a0e15cb944c8298c
1 #!/usr/bin/env node
2 var liba = require("../liba");
3 function do_leak_check() {
4     for (const arg of arguments) {
5         arg.delete();
6     }
7     if (liba.do_leak_check) {
8         liba.do_leak_check();
9     }
11 var ctx = new liba.lpf(10, 0.01);
12 ctx.gen(10, 0.01).zero();
13 console.log(ctx.iter(1.0), ctx.iter(1.0));
14 console.log(ctx.alpha, ctx.output);
15 do_leak_check(ctx);
16 var ctx = new liba.lpf(0.1);
17 console.log(ctx.iter(1.0), ctx.iter(1.0));
18 console.log(ctx.alpha, ctx.output);
19 do_leak_check(ctx);