diff options
Diffstat (limited to 'js/Linear/TIME_DELAY.js')
-rw-r--r-- | js/Linear/TIME_DELAY.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Linear/TIME_DELAY.js b/js/Linear/TIME_DELAY.js index 8834f518..d90a39e1 100644 --- a/js/Linear/TIME_DELAY.js +++ b/js/Linear/TIME_DELAY.js @@ -16,6 +16,7 @@ function TIME_DELAY() { exprs = [[string(T)],[string(init)],[string(N)]]; gr_i = []; this.x = standard_define([3.5,2],model,exprs,gr_i); + return new BasicBlock(this.x); } TIME_DELAY.prototype.details = function TIME_DELAY() { return this.x; @@ -54,5 +55,6 @@ function TIME_DELAY() { break; } } + return new BasicBlock(this.x); } } |