diff options
Diffstat (limited to 'js/NonLinear/MAX_f.js')
-rw-r--r-- | js/NonLinear/MAX_f.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/NonLinear/MAX_f.js b/js/NonLinear/MAX_f.js index e3640328..33aff00e 100644 --- a/js/NonLinear/MAX_f.js +++ b/js/NonLinear/MAX_f.js @@ -12,6 +12,7 @@ function MAX_f() { exprs = " "; gr_i = []; this.x = standard_define([2,2],model,exprs,gr_i); + return new BasicBlock(this.x); } MAX_f.prototype.details = function MAX_f() { return this.x; @@ -20,5 +21,6 @@ function MAX_f() { } MAX_f.prototype.set = function MAX_f() { this.x = arg1; + return new BasicBlock(this.x); } } |