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