diff options
Diffstat (limited to 'js/NonLinear')
-rw-r--r-- | js/NonLinear/ABSBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/COSBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/EXPBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/EXPBLK_m.js | 4 | ||||
-rw-r--r-- | js/NonLinear/FSV_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/INVBLK.js | 4 | ||||
-rw-r--r-- | js/NonLinear/INVBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/LOGBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/LOOKUP_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/MAX_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/MIN_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/POWBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/PRODUCT.js | 4 | ||||
-rw-r--r-- | js/NonLinear/PROD_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/SINBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/TANBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/TrigFun.js | 4 |
17 files changed, 17 insertions, 51 deletions
diff --git a/js/NonLinear/ABSBLK_f.js b/js/NonLinear/ABSBLK_f.js index 0c8058bf..f072dbf0 100644 --- a/js/NonLinear/ABSBLK_f.js +++ b/js/NonLinear/ABSBLK_f.js @@ -15,9 +15,7 @@ function ABSBLK_f() { return this.x; } ABSBLK_f.prototype.get = function ABSBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } ABSBLK_f.prototype.set = function ABSBLK_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/COSBLK_f.js b/js/NonLinear/COSBLK_f.js index 7735a7ae..51a7c03f 100644 --- a/js/NonLinear/COSBLK_f.js +++ b/js/NonLinear/COSBLK_f.js @@ -16,9 +16,7 @@ function COSBLK_f() { return this.x; } COSBLK_f.prototype.get = function COSBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } COSBLK_f.prototype.set = function COSBLK_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/EXPBLK_f.js b/js/NonLinear/EXPBLK_f.js index bbc0b82d..e5912a9f 100644 --- a/js/NonLinear/EXPBLK_f.js +++ b/js/NonLinear/EXPBLK_f.js @@ -19,9 +19,7 @@ function EXPBLK_f() { return this.x; } EXPBLK_f.prototype.get = function EXPBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } EXPBLK_f.prototype.set = function EXPBLK_f() { this.exprs = this.graphics.exprs; diff --git a/js/NonLinear/EXPBLK_m.js b/js/NonLinear/EXPBLK_m.js index c77f7bea..ecdf542c 100644 --- a/js/NonLinear/EXPBLK_m.js +++ b/js/NonLinear/EXPBLK_m.js @@ -23,9 +23,7 @@ function EXPBLK_m() { return this.x; } EXPBLK_m.prototype.get = function EXPBLK_m() { - var options = { - } - return options; + alert("parameters cannot be modified"); } EXPBLK_m.prototype.set = function EXPBLK_m() { this.exprs = this.graphics.exprs; diff --git a/js/NonLinear/FSV_f.js b/js/NonLinear/FSV_f.js index ff49f1af..91a20d4c 100644 --- a/js/NonLinear/FSV_f.js +++ b/js/NonLinear/FSV_f.js @@ -17,9 +17,7 @@ function FSV_f() { return this.x; } FSV_f.prototype.get = function FSV_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } FSV_f.prototype.set = function FSV_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/INVBLK.js b/js/NonLinear/INVBLK.js index 324372b1..0c3aa215 100644 --- a/js/NonLinear/INVBLK.js +++ b/js/NonLinear/INVBLK.js @@ -17,9 +17,7 @@ function INVBLK() { return this.x; } INVBLK.prototype.get = function INVBLK() { - var options = { - } - return options; + alert("parameters cannot be modified"); } INVBLK.prototype.set = function INVBLK() { return new BasicBlock(this.x); diff --git a/js/NonLinear/INVBLK_f.js b/js/NonLinear/INVBLK_f.js index 1ce1e841..c9106183 100644 --- a/js/NonLinear/INVBLK_f.js +++ b/js/NonLinear/INVBLK_f.js @@ -17,9 +17,7 @@ function INVBLK_f() { return this.x; } INVBLK_f.prototype.get = function INVBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } INVBLK_f.prototype.set = function INVBLK_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/LOGBLK_f.js b/js/NonLinear/LOGBLK_f.js index f244195f..4f528865 100644 --- a/js/NonLinear/LOGBLK_f.js +++ b/js/NonLinear/LOGBLK_f.js @@ -19,9 +19,7 @@ function LOGBLK_f() { return this.x; } LOGBLK_f.prototype.get = function LOGBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } LOGBLK_f.prototype.set = function LOGBLK_f() { this.exprs = this.graphics.exprs; diff --git a/js/NonLinear/LOOKUP_f.js b/js/NonLinear/LOOKUP_f.js index d1d2abab..9a22b665 100644 --- a/js/NonLinear/LOOKUP_f.js +++ b/js/NonLinear/LOOKUP_f.js @@ -16,9 +16,7 @@ function LOOKUP_f() { return this.x; } LOOKUP_f.prototype.get = function LOOKUP_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } LOOKUP_f.prototype.set = function LOOKUP_f() { this.exprs = this.graphics.exprs; diff --git a/js/NonLinear/MAX_f.js b/js/NonLinear/MAX_f.js index 8b7bbfc8..8fc66350 100644 --- a/js/NonLinear/MAX_f.js +++ b/js/NonLinear/MAX_f.js @@ -18,9 +18,7 @@ function MAX_f() { return this.x; } MAX_f.prototype.get = function MAX_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } MAX_f.prototype.set = function MAX_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/MIN_f.js b/js/NonLinear/MIN_f.js index 34647671..9f3f872d 100644 --- a/js/NonLinear/MIN_f.js +++ b/js/NonLinear/MIN_f.js @@ -18,9 +18,7 @@ function MIN_f() { return this.x; } MIN_f.prototype.get = function MIN_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } MIN_f.prototype.set = function MIN_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/POWBLK_f.js b/js/NonLinear/POWBLK_f.js index bd307438..8fbad09b 100644 --- a/js/NonLinear/POWBLK_f.js +++ b/js/NonLinear/POWBLK_f.js @@ -19,9 +19,7 @@ function POWBLK_f() { return this.x; } POWBLK_f.prototype.get = function POWBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } POWBLK_f.prototype.set = function POWBLK_f() { this.exprs = this.graphics.exprs; diff --git a/js/NonLinear/PRODUCT.js b/js/NonLinear/PRODUCT.js index bbaef310..f5946553 100644 --- a/js/NonLinear/PRODUCT.js +++ b/js/NonLinear/PRODUCT.js @@ -18,9 +18,7 @@ function PRODUCT() { return this.x; } PRODUCT.prototype.get = function PRODUCT() { - var options = { - } - return options; + alert("parameters cannot be modified"); } PRODUCT.prototype.set = function PRODUCT() { this.exprs = this.graphics.exprs; diff --git a/js/NonLinear/PROD_f.js b/js/NonLinear/PROD_f.js index ead16ab5..807a8fd2 100644 --- a/js/NonLinear/PROD_f.js +++ b/js/NonLinear/PROD_f.js @@ -14,9 +14,7 @@ function PROD_f() { return this.x; } PROD_f.prototype.get = function PROD_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } PROD_f.prototype.set = function PROD_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/SINBLK_f.js b/js/NonLinear/SINBLK_f.js index 5a5d5548..2312dc22 100644 --- a/js/NonLinear/SINBLK_f.js +++ b/js/NonLinear/SINBLK_f.js @@ -16,9 +16,7 @@ function SINBLK_f() { return this.x; } SINBLK_f.prototype.get = function SINBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } SINBLK_f.prototype.set = function SINBLK_f() { return new BasicBlock(this.x); diff --git a/js/NonLinear/TANBLK_f.js b/js/NonLinear/TANBLK_f.js index 05a576da..31393cf3 100644 --- a/js/NonLinear/TANBLK_f.js +++ b/js/NonLinear/TANBLK_f.js @@ -17,9 +17,7 @@ function TANBLK_f() { return this.x; } TANBLK_f.prototype.get = function TANBLK_f() { - var options = { - } - return options; + alert("parameters cannot be modified"); } TANBLK_f.prototype.set = function TANBLK_f() { this.x.model.firing = []; diff --git a/js/NonLinear/TrigFun.js b/js/NonLinear/TrigFun.js index 78f23521..6bc2eca5 100644 --- a/js/NonLinear/TrigFun.js +++ b/js/NonLinear/TrigFun.js @@ -16,9 +16,7 @@ function TrigFun() { return this.x; } TrigFun.prototype.get = function TrigFun() { - var options = { - } - return options; + alert("parameters cannot be modified"); } TrigFun.prototype.set = function TrigFun() { this.exprs = this.graphics.exprs; |