diff options
Diffstat (limited to 'js/Linear/TCLSS.js')
-rw-r--r-- | js/Linear/TCLSS.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Linear/TCLSS.js b/js/Linear/TCLSS.js index e6a19aa3..4d7dfc72 100644 --- a/js/Linear/TCLSS.js +++ b/js/Linear/TCLSS.js @@ -21,6 +21,7 @@ function TCLSS() { exprs = [[strcat(sci2exp(A))],[strcat(sci2exp(B))],[strcat(sci2exp(C))],[strcat(sci2exp(D))],[strcat(sci2exp(x0))]]; gr_i = []; this.x = standard_define([3,2],model,exprs,gr_i); + return new BasicBlock(this.x); } TCLSS.prototype.details = function TCLSS() { return this.x; @@ -81,5 +82,6 @@ function TCLSS() { } } } + return new BasicBlock(this.x); } } |