From f389f174481df676c841ebcc87a7b8b313921bbc Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 17 Sep 2018 16:11:31 +0530 Subject: add importset and getContainer to combined.js --- js/NonLinear/MAXMIN.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'js/NonLinear/MAXMIN.js') diff --git a/js/NonLinear/MAXMIN.js b/js/NonLinear/MAXMIN.js index 357236d7..1540c14f 100644 --- a/js/NonLinear/MAXMIN.js +++ b/js/NonLinear/MAXMIN.js @@ -87,4 +87,12 @@ function MAXMIN() { MAXMIN.prototype.get_popup_title = function MAXMIN() { return this.set_param_popup_title; } + MAXMIN.prototype.importset = function MAXMIN() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.mm = ary[0]; + this.nin = ary[1]; + this.zcr = ary[2]; + } + MAXMIN.prototype.getContainer = function MAXMIN() { return new BasicBlock(this.x); } } -- cgit