diff options
Diffstat (limited to 'js/Misc')
-rw-r--r-- | js/Misc/CONSTRAINT_c.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/Misc/CONSTRAINT_c.js b/js/Misc/CONSTRAINT_c.js index 616d04e7..dc17effd 100644 --- a/js/Misc/CONSTRAINT_c.js +++ b/js/Misc/CONSTRAINT_c.js @@ -19,7 +19,10 @@ function CONSTRAINT_c() { return this.x; } CONSTRAINT_c.prototype.get = function CONSTRAINT_c() { - alert("parameters cannot be modified"); + var options = { + x0:["Initial guess values",this.x0.toString().replace(/,/g," ")], + } + return options; } CONSTRAINT_c.prototype.set = function CONSTRAINT_c() { this.exprs = this.graphics.exprs; |