diff options
Diffstat (limited to 'js/Linear/DLR.js')
-rw-r--r-- | js/Linear/DLR.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Linear/DLR.js b/js/Linear/DLR.js index 39d11022..2b06bb91 100644 --- a/js/Linear/DLR.js +++ b/js/Linear/DLR.js @@ -18,6 +18,7 @@ function DLR() { model.dep_ut = [false,false]; gr_i = []; this.x = standard_define([3,2],model,exprs,gr_i); + return new BasicBlock(this.x); } DLR.prototype.details = function DLR() { return this.x; @@ -69,5 +70,6 @@ function DLR() { } } this.x.model.firing = []; + return new BasicBlock(this.x); } } |