diff options
Diffstat (limited to 'js/NonLinear/INVBLK.js')
-rw-r--r-- | js/NonLinear/INVBLK.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/NonLinear/INVBLK.js b/js/NonLinear/INVBLK.js index 2d359c7b..8c6911f1 100644 --- a/js/NonLinear/INVBLK.js +++ b/js/NonLinear/INVBLK.js @@ -11,6 +11,7 @@ function INVBLK() { exprs = " "; gr_i = []; this.x = standard_define([2,2],model,exprs,gr_i); + return new BasicBlock(this.x); } INVBLK.prototype.details = function INVBLK() { return this.x; @@ -19,5 +20,6 @@ function INVBLK() { } INVBLK.prototype.set = function INVBLK() { this.x = arg1; + return new BasicBlock(this.x); } } |