public Complex NextStepComponent (int j, Ode ode, double t, Complex[] y)
		{
			return y [j] + ode.CalcComponent (j, t, y) * _h;
		}