diff options
Diffstat (limited to 'js/NonLinear/PROD_f.js')
-rw-r--r-- | js/NonLinear/PROD_f.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/NonLinear/PROD_f.js b/js/NonLinear/PROD_f.js index af76e144..1f705174 100644 --- a/js/NonLinear/PROD_f.js +++ b/js/NonLinear/PROD_f.js @@ -8,6 +8,7 @@ function PROD_f() { model.blocktype = "c"; model.dep_ut = [true,false]; this.x = standard_define([1,1],model,[],[]); + return new BasicBlock(this.x); } PROD_f.prototype.details = function PROD_f() { return this.x; @@ -16,5 +17,6 @@ function PROD_f() { } PROD_f.prototype.set = function PROD_f() { this.x = arg1; + return new BasicBlock(this.x); } } |