enable analyzer on CI
[liba.git] / javascript / test / hpf.js
blob16e9fa3ba30e955900800ebb605f543a130c486f
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.hpf(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, ctx.input);
15 do_leak_check(ctx);
16 var ctx = new liba.hpf(0.1);
17 console.log(ctx.iter(1.0), ctx.iter(1.0));
18 console.log(ctx.alpha, ctx.output, ctx.input);
19 do_leak_check(ctx);