loop variant
   HOME

TheInfoList



OR:

In computer science, a loop variant is a mathematical function defined on the state space of a computer program whose value is monotonically decreased with respect to a (strict) well-founded relation by the iteration of a while loop under some invariant conditions, thereby ensuring its termination. A loop variant whose range is restricted to the non-negative integers is also known as a bound function, because in this case it provides a trivial upper bound on the number of iterations of a loop before it terminates. However, a loop variant may be transfinite, and thus is not necessarily restricted to integer values. A well-founded relation is characterized by the existence of a minimal element of every non-empty subset of its domain. The existence of a variant proves the termination of a while loop in a computer program by well-founded descent. A basic property of a well-founded relation is that it has no
infinite descending chain In mathematics, a total or linear order is a partial order in which any two elements are comparable. That is, a total order is a binary relation \leq on some Set (mathematics), set X, which satisfies the following for all a, b and c in X: # a ...
s. Therefore a loop possessing a variant will terminate after a finite number of iterations, as long as its body terminates each time. A while loop, or, more generally, a computer program that may contain while loops, is said to be totally correct if it is partially correct and it terminates.


Rule of inference for total correctness

In order to formally state the rule of inference for the termination of a while loop we have demonstrated above, recall that in
Floyd–Hoare logic Hoare logic (also known as Floyd–Hoare logic or Hoare rules) is a formal system with a set of logical rules for reasoning rigorously about the correctness of computer programs. It was proposed in 1969 by the British computer scientist and log ...
, the rule for expressing the partial correctness of a while loop is: :\frac , where is the ''
invariant Invariant and invariance may refer to: Computer science * Invariant (computer science), an expression whose value doesn't change during program execution ** Loop invariant, a property of a program loop that is true before (and after) each iteratio ...
'', ''C'' is the ''condition'', and ''S'' is the ''body'' of the loop. To express total correctness, we write instead: :\frac , where, in addition, ''V'' is the ''variant'', and by convention the unbound symbol ''z'' is taken to be
universally quantified In mathematical logic, a universal quantification is a type of quantifier, a logical constant which is interpreted as "given any" or "for all". It expresses that a predicate can be satisfied by every member of a domain of discourse. In other w ...
.


Every loop that terminates has a variant

The existence of a variant implies that a while loop terminates. It may seem surprising, but the converse is true, as well, as long as we assume the axiom of choice: every while loop that terminates (given its invariant) has a variant. To prove this, assume that the loop :\mathtt\;C\; \mathtt \; S terminates given the invariant where we have the total correctness assertion : \land C ;S\; Consider the "successor" relation on the state space induced by the execution of the statement ''S'' from a state satisfying both the invariant and the condition ''C''. That is, we say that a state is a "successor" of if and only if * and ''C'' are both true in the state , and * is the state that results from the execution of the statement ''S'' in the state . We note that \sigma' \neq \sigma, for otherwise the loop would fail to terminate. Next consider the reflexive, transitive closure of the "successor" relation. Call this ''iteration'': we say that a state is an ''iterate'' of if either \sigma' = \sigma, or there is a finite chain \sigma_0, \sigma_1,\,\dots\,,\sigma_n such that \sigma_0 = \sigma, \sigma_n = \sigma' and \sigma_ is a "successor" of for all , 0 \le i < n. We note that if and are two distinct states, and is an iterate of , then cannot be an iterate of for again, otherwise the loop would fail to terminate. In other words, iteration is antisymmetric, and thus, a partial order. Now, since the while loop terminates after a finite number of steps given the invariant , and no state has a successor unless is true in that state, we conclude that every state has only finitely many iterates, every descending chain with respect to iteration has only finitely many distinct values, and thus there is no
infinite descending chain In mathematics, a total or linear order is a partial order in which any two elements are comparable. That is, a total order is a binary relation \leq on some Set (mathematics), set X, which satisfies the following for all a, b and c in X: # a ...
, i.e. loop iteration satisfies the descending chain condition. Therefore—assuming the axiom of choice—the "successor" relation we originally defined for the loop is
well-founded In mathematics, a binary relation ''R'' is called well-founded (or wellfounded) on a class ''X'' if every non-empty subset ''S'' âŠ† ''X'' has a minimal element with respect to ''R'', that is, an element ''m'' not related by ''s& ...
on the state space , since it is strict (irreflexive) and contained in the "iterate" relation. Thus the identity function on this state space is a variant for the while loop, as we have shown that the state must strictly decrease—as a "successor" and an "iterate"—each time the body ''S'' is executed given the invariant and the condition ''C''. Moreover, we can show by a counting argument that the existence of any variant implies the existence of a variant in 1, the
first uncountable ordinal In mathematics, the first uncountable ordinal, traditionally denoted by \omega_1 or sometimes by \Omega, is the smallest ordinal number that, considered as a set, is uncountable. It is the supremum (least upper bound) of all countable ordinals. Whe ...
, i.e., :V:\Sigma\rightarrow\omega_1. This is because the collection of all states reachable by a finite computer program in a finite number of steps from a finite input is countably infinite, and 1 is the enumeration of all well-order types on countable sets.


Practical considerations

In practice, loop variants are often taken to be non-negative integers, or even required to be so, but the requirement that every loop have an integer variant removes the expressive power of unbounded iteration from a programming language. Unless such a (formally verified) language allows a transfinite proof of termination for some other equally powerful construct such as a recursive function call, it is no longer capable of full μ-recursion, but only primitive recursion.
Ackermann's function In computability theory, the Ackermann function, named after Wilhelm Ackermann, is one of the simplest and earliest-discovered examples of a total computable function that is not primitive recursive. All primitive recursive functions are total a ...
is the canonical example of a recursive function that cannot be computed in a loop with an integer variant. In terms of their
computational complexity In computer science, the computational complexity or simply complexity of an algorithm is the amount of resources required to run it. Particular focus is given to computation time (generally measured by the number of needed elementary operations) ...
, however, functions that are not primitive recursive lie far beyond the realm of what is usually considered tractable. Considering even the simple case of exponentiation as a primitive recursive function, and that the composition of primitive recursive functions is primitive recursive, one can begin to see how quickly a primitive recursive function can grow. And any function that can be computed by a Turing machine in a running time bounded by a primitive recursive function is itself primitive recursive. So it is difficult to imagine a practical use for full ''μ''-recursion where primitive recursion will not do, especially since the former can be simulated by the latter up to exceedingly long running times. And in any case,
Kurt Gödel Kurt Friedrich Gödel ( , ; April 28, 1906 â€“ January 14, 1978) was a logician, mathematician, and philosopher. Considered along with Aristotle and Gottlob Frege to be one of the most significant logicians in history, Gödel had an imme ...
's first
incompleteness theorem Complete may refer to: Logic * Completeness (logic) * Completeness of a theory, the property of a theory that every formula in the theory's language or its negation is provable Mathematics * The completeness of the real numbers, which implies t ...
and the halting problem imply that there are while loops that always terminate but cannot be proven to do so; thus it is unavoidable that any requirement for a formal proof of termination must reduce the expressive power of a programming language. While we have shown that every loop that terminates has a variant, this does not mean that the well-foundedness of the loop iteration can be proven.


Example

Here is an example, in C-like
pseudocode In computer science, pseudocode is a plain language description of the steps in an algorithm or another system. Pseudocode often uses structural conventions of a normal programming language, but is intended for human reading rather than machine re ...
, of an integer variant computed from some upper bound on the number of iterations remaining in a while loop. However, C allows side effects in the evaluation of expressions, which is unacceptable from the point of view of formally verifying a computer program. /** condition-variable, which is changed in procedure S() **/ bool C; /** function, which computes a loop iteration bound without side effects **/ inline unsigned int getBound(); /** body of loop must not alter V **/ inline void S(); int main() ;


Why even consider a non-integer variant?

Why even consider a non-integer or transfinite variant? This question has been raised because in all practical instances where we want to prove that a program terminates, we also want to prove that it terminates in a reasonable amount of time. There are at least two possibilities: * An upper bound on the number of iterations of a loop may be conditional on proving termination in the first place. It may be desirable to separately (or progressively) prove the three properties of ** partial correctness, ** termination, and ** running time. * Generality: considering transfinite variants allows all possible proofs of termination for a while loop to be seen in terms of the existence of a variant.


See also

* While loop * Loop invariant * Transfinite induction * Descending chain condition * Large countable ordinal * Correctness (computer science) * Weakest-preconditions of While loop


References

{{reflist Formal methods Control flow