Endofiteration
Endofiteration is a term used to describe the boundary that marks the conclusion of one cycle in an iterative process. It denotes the transition to the next iteration, or to termination if the stopping condition has been met. The concept is applicable across programming, mathematics, and numerical methods where processes repeatedly refine a state or estimate.
In programming, a loop such as a for or while executes its body and then evaluates a
In numerical and algorithmic contexts, each iteration applies an update rule to produce a new estimate or
Termination conditions govern when iterations stop. These can be a predetermined maximum number of iterations, satisfaction
See also: loop, iteration, stopping criterion, convergence, fixed-point iteration, gradient descent, Jacobi method.