diff options
Diffstat (limited to 'js/Linear/GAINBLK.js')
-rw-r--r-- | js/Linear/GAINBLK.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Linear/GAINBLK.js b/js/Linear/GAINBLK.js index edab742b..54f2883e 100644 --- a/js/Linear/GAINBLK.js +++ b/js/Linear/GAINBLK.js @@ -18,6 +18,7 @@ function GAINBLK() { exprs = [strcat(sci2exp(gain))]; gr_i = []; this.x = standard_define([2,2],model,exprs,gr_i); + return new BasicBlock(this.x); } GAINBLK.prototype.details = function GAINBLK() { return this.x; @@ -144,5 +145,6 @@ function GAINBLK() { } } } + return new BasicBlock(this.x); } } |