public double ans1; //решение уравнения с конкретным начальным приближением public NewtonAlg(func1 f, func2 df, double eps, int count) { this.f = f; this.df = df; this.eps = eps; this.count = count; }
public Arrow(func2 thePairFunction) { thePairFunc = thePairFunction; }