Predicate transformer semantics

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

Predicate transformer semantics were introduced by Edsger Dijkstra in his seminal paper "Guarded commands, nondeterminacy and formal derivation of programs". They define the semantics of an imperative programming paradigm by assigning to each statement in this language a corresponding predicate transformer: a total function between two predicates on the state space of the statement. In this sense, predicate transformer semantics are a kind of denotational semantics. Actually, in guarded commands, Dijkstra uses only one kind of predicate transformer: the well-known weakest preconditions (see below).

Moreover, predicate transformer semantics are a reformulation of Floyd–Hoare logic. Whereas Hoare logic is presented as a deductive system, predicate transformer semantics (either by weakest-preconditions or by strongest-postconditions see below) are complete strategies to build valid deductions of Hoare logic. In other words, they provide an effective algorithm to reduce the problem of verifying a Hoare triple to the problem of proving a first-order formula. Technically, predicate transformer semantics perform a kind of symbolic execution of statements into predicates: execution runs backward in the case of weakest-preconditions, or runs forward in the case of strongest-postconditions.

Weakest preconditions[edit]

Definition[edit]

Given a statement S, the weakest-precondition of S is a function mapping any postcondition R to a precondition P. Actually, the result of this function, denoted , is the "weakest" precondition on the initial state ensuring that execution of S terminates in a final state satisfying R.

More formally, let us use variable x to denote abusively the tuple of variables involved in statement S. Then, a given Hoare triple is provable in Hoare logic for total correctness if and only if the first-order predicate below holds:

Formally, weakest-preconditions are defined recursively over the abstract syntax of statements. Actually, weakest-precondition semantics is a continuation-passing style semantics of state transformers where the predicate in parameter is a continuation.

Skip[edit]

Abort[edit]

Assignment[edit]

We give below two equivalent weakest-preconditions for the assignment statement. In these formulas, is a copy of R where free occurrences of x are replaced by E. Hence, here, expression E is implicitly coerced into a valid term of the underlying logic: it is thus a pure expression, totally defined, terminating and without side effect.

  • version 1:

where y is a fresh variable (representing the final value of variable x)

  • version 2:

The first version avoids a potential duplication of E in R, whereas the second version is simpler when there is at most a single occurrence of x in R. The first version also reveals a deep duality between weakest-precondition and strongest-postcondition (see below).

An example of a valid calculation of wp (using version 2) for assignments with integer valued variable x is:

This means that in order for the postcondition x > 10 to be true after the assignment, the precondition x > 15 must be true before the assignment. This is also the "weakest precondition", in that it is the "weakest" restriction on the value of x which makes x > 10 true after the assignment.

Sequence[edit]

For example,

Conditional[edit]

As example:

While loop[edit]

Partial Correctness[edit]

Ignoring termination for a moment, we can define the rule for the weakest liberal precondition, denoted wlp, using a predicate I, called the loop invariant, typically supplied by the programmer:

This simply states that (1) the invariant must hold at the start of the loop; (2) additionally, for any initial state y, the invariant and guard taken together be strong enough to establish the weakest precondition necessary for the loop body to be able to re-establish the invariant; (3) finally, if and when the loop terminates in a given state y, the fact that the loop guard is false along with the invariant should be able to establish the required postcondition.

Total Correctness[edit]

To show total correctness, we also have to show that the loop terminates. For this we define a well-founded relation on the state space denoted "<" and called loop variant. Hence, we have:

where y is a fresh tuple of variables

Informally, in the above conjunction of three formulas:

  • the first one means that invariant I must initially hold;
  • the second one means that the body of the loop (e.g. statement S) must preserve the invariant and decrease the variant: here, variable y represents the initial state of the body execution;
  • the last one means that R must be established at the end of the loop: here, variable y represents the final state of the loop.

In predicate transformers semantics, invariant and variant are built by mimicking the Kleene fixed-point theorem. Below, this construction is sketched in set theory. We assume that U is a set denoting the state space. First, we define a family of subsets of U denoted by induction over natural number k. Informally represents the set of initial states that makes R satisfied after less than k iterations of the loop:

Then, we define:

  • invariant I as the predicate .
  • variant as the proposition

With these definitions, reduces to formula .

However, in practice, such an abstract construction cannot be handled efficiently by theorem provers. Hence, loop invariants and variants are provided by human users, or are inferred by some abstract interpretation procedure.

Non-deterministic guarded commands[edit]

Actually, Dijkstra's Guarded Command Language (GCL) is an extension of the simple imperative language given until here with non-deterministic statements. Indeed, GCL aims to be a formal notation to define algorithms. Non-deterministic statements represent choices left to the actual implementation (in an effective programming language): properties proved on non-deterministic statements are ensured for all possible choices of implementation. In other words, weakest-preconditions of non-deterministic statements ensure

  • that there exists a terminating execution (e.g. there exists an implementation),
  • and, that the final state of all terminating execution satisfies the postcondition.

Notice that the definitions of weakest-precondition given above (in particular for while-loop) preserve this property.

Selection[edit]

Selection is a generalization of if statement:

Here, when two guards and are simultaneously true, then execution of this statement can run any of the associated statement or .

Repetition[edit]

Repetition is a generalization of while statement in a similar way.

Specification statement (or weakest-precondition of procedure call)[edit]

Refinement calculus extends non-deterministic statements with the notion of specification statement. Informally, this statement represents a procedure call in black box, where the body of the procedure is not known. Typically, using a syntax close to B-Method, a specification statement is written

 @

where

  • x is the global variable modified by the statement,
  • P is a predicate representing the precondition,
  • y is a fresh logical variable, bound in Q, that represents the new value of x non-deterministically chosen by the statement,
  • Q is a predicate representing a postcondition, or more exactly a guard: in Q, variable x represents the initial state and y denotes the final state.

The weakest-precondition of specification statement is given by:

 @

where z is a fresh name

Moreover, a statement S implements such a specification statement if and only if the following predicate is a tautology:

where is a fresh name (denoting the initial state)

Indeed, in such a case, the following property is ensured for all postcondition R (this is a direct consequence of wp monotonicity, see below):

 @

Informally, this last property ensures that any proof about some statement involving a specification remains valid when replacing this specification by any of its implementations.

Other predicate transformers[edit]

Weakest liberal precondition [edit]

An important variant of the weakest precondition is the weakest liberal precondition , which yields the weakest condition under which S either does not terminate or establishes R. It therefore differs from wp in not guaranteeing termination. Hence it corresponds to Hoare logic in partial correctness: for the statement language given above, wlp differs with wp only on while-loop, in not requiring a variant (see above).

Strongest postcondition[edit]

Given S a statement and R a precondition (a predicate on the initial state), then is their strongest-postcondition: it implies any postcondition satisfied by the final state of any execution of S, for any initial state statisfying R. In other words, a Hoare triple is provable in Hoare logic if and only if the predicate below hold:

Usually, strongest-postconditions are used in partial correctness. Hence, we have the following relation between weakest-liberal-preconditions and strongest-postconditions:

For example, on assignment we have:

where y is fresh

Above, the logical variable y represents the initial value of variable x. Hence,

On sequence, it appears that sp runs forward (whereas wp runs backward):

Win and sin predicate transformers[edit]

Leslie Lamport has suggested win and sin as predicate transformers for concurrent programming.[1]

Predicate transformers properties[edit]

This section presents some characteristic properties of predicate transformers.[2] Below, T denotes a predicate transformer (a function between two predicates on the state space) and P a predicate. For instance, T(P) may denote wp(S,P) or sp(S,P). We keep x as the variable of the state space.

Monotonic[edit]

Predicate transformers of interest (wp, wlp, and sp) are monotonic. A predicate transformer T is monotonic if and only if:

This property is related to the consequence rule of Hoare logic.

Strict[edit]

A predicate transformer T is strict iff:

For instance, wp is strict, whereas wlp is generally not. In particular, if statement S may not terminate then is satisfiable. We have

Indeed, true is a valid invariant of that loop.

Terminating[edit]

A predicate transformer T is terminating iff:

Actually, this terminology makes sense only for strict predicate transformers: indeed, is the weakest-precondition ensuring termination of S.

It seems that naming this property non-aborting would be more appropriate: in total correctness, non-termination is abortion, whereas in partial correctness, it is not.

Conjunctive[edit]

A predicate transformer T is conjunctive iff:

This is the case for , even if statement S is non-deterministic as a selection statement or a specification statement.

Disjunctive[edit]

A predicate transformer T is disjunctive iff:

This is generally not the case of when S is non-deterministic. Indeed, let us consider a non-deterministic statement S choosing an arbitrary boolean. This statement is given here as the following selection statement:

Then, reduces to the formula .

Hence, reduces to the tautology

Whereas, the formula reduces to the wrong proposition .

The same counter-example can be reproduced using a specification statement (see above) instead:

 @

Applications[edit]

Beyond predicate transformers[edit]

Weakest-preconditions and strongest-postconditions of imperative expressions[edit]

In predicate transformers semantics, expressions are restricted to terms of the logic (see above). However, this restriction seems too strong for most existing programming languages, where expressions may have side effects (call to a function having a side effect), may not terminate or abort (like division by zero). There are many proposals to extend weakest-preconditions or strongest-postconditions for imperative expression languages and in particular for monads.

Among them, Hoare Type Theory combines Hoare logic for a Haskell-like language, separation logic and type theory.[6] This system is currently implemented as a Coq library called Ynot.[7] In this language, evaluation of expressions corresponds to computations of strongest-postconditions.

Probabilistic Predicate Transformers[edit]

Probabilistic Predicate Transformers are an extension of predicate transformers for probabilistic programs. Indeed, such programs have many applications in cryptography (hiding of information using some randomized noise), distributed systems (symmetry breaking). [8]

See also[edit]

Notes[edit]

  1. ^ Lamport, Leslie (July 1990). "win and sin: Predicate Transformers for Concurrency". ACM Trans. Program. Lang. Syst. 12 (3): 396–428. doi:10.1145/78969.78970.
  2. ^ Back, Ralph-Johan; Wright, Joakim (2012) [1978]. Refinement Calculus: A Systematic Introduction. Texts in Computer Science. Springer. ISBN 978-1-4612-1674-2.
  3. ^ Dijkstra, Edsger W. (1968). "A Constructive Approach to the Problem of Program Correctness". BIT Numerical Mathematics. 8: 174–186. doi:10.1007/bf01933419.
  4. ^ Wirth, N. (April 1971). "Program development by stepwise refinement" (PDF). Comm. ACM. 14 (4): 221–7. doi:10.1145/362575.362577.
  5. ^ Tutorial on Hoare Logic: a Coq library, giving a simple but formal proof that Hoare logic is sound and complete with respect to an operational semantics.
  6. ^ Nanevski, Aleksandar; Morrisett, Greg; Birkedal, Lars (September 2008). "Hoare Type Theory, Polymorphism and Separation" (PDF). Journal of Functional Programming. 18 (5–6): 865–911. doi:10.1017/S0956796808006953.
  7. ^ Ynot a Coq library implementing Hoare Type Theory.
  8. ^ Morgan, Carroll; McIver, Annabelle; Seidel, Karen (May 1996). "Probabilistic Predicate Transformers" (PDF). ACM Trans. Program. Lang. Syst. 18 (3): 325–353. doi:10.1145/229542.229547.

References[edit]