public classOnp(string args) { this.x = double.NaN; this.status = "ok"; this.operatory = new classOperators(); this.inflix = checkInput(args); }
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); }
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); }