Example #1
0
 public classOnp(string args)
 {
     this.x         = double.NaN;
     this.status    = "ok";
     this.operatory = new classOperators();
     this.inflix    = checkInput(args);
 }
Example #2
0
 public classOnp(string formula, double x)
 {
     this.x         = x;
     this.x_max     = double.NaN;
     this.status    = "ok";
     this.operatory = new classOperators();
     this.inflix    = checkInput(formula);
 }
Example #3
0
 public classOnp(string formula, double from, double to, double n)
 {
     this.x_min     = from;
     this.x_max     = to;
     this.n         = n;
     this.status    = "ok";
     this.operatory = new classOperators();
     this.inflix    = checkInput(formula);
 }