diff options
Diffstat (limited to 'js/MatrixOp/MATDIV.js')
-rw-r--r-- | js/MatrixOp/MATDIV.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js index 64a39f47..38f01397 100644 --- a/js/MatrixOp/MATDIV.js +++ b/js/MatrixOp/MATDIV.js @@ -23,6 +23,7 @@ function MATDIV() { label = [sci2exp(1)]; gr_i = []; this.x = standard_define([2,2],model,label,gr_i); + return new BasicBlock(this.x); } MATDIV.prototype.details = function MATDIV() { return this.x; @@ -68,5 +69,6 @@ function MATDIV() { break; } } + return new BasicBlock(this.x); } } |