NUMERICS_ITMAX

#define NUMERICS_ITMAX 100;

Maximum number of iterations any iterative method attempts in order to obtain convergence. Iterative methods will continue until either the estimated absolute error is less than NUMERICS_MAX_ERROR or the number of iterations exceeds NUMERICS_ITMAX. In the later case, a NUMERICS_ERROR is raised.

Header:
#include "numerics.h"

See also:
NUMERICS_MAX_ERROR