Fall 99, CSE 520: Lectures 13 and 15


The Language PCF

PCF (Programming [Language for] Computable Functions) is an extension of the Lambda Calculus with some primitive data types and operations. Historically, this language was a part of LCF (Logic of Computable Functions), introduced in 1969 by Dana Scott, with the purpose of investigating the definability of computable functions on higher order types. Later on, in 1977, Gordon Plotkin, considered the PCF sublanguage on its own (and gave it this name), studied its operational semantics, and introduced the problem of "full abstraction" (correspondence between the denotational and the operational meanings of a language), which has become one of the key issues in the semantics of Programming Languages.

Our purpose here is to investigate the computational models of (the functional part of) programming languages, and therefore we are mainly interested in the operational semantics of PCF. We will consider the two main kinds of semantics, corresponding to the eager (call-by-value) and to the lazy (call-by-name) evaluation stategies. The first is the basis for languages like Lisp, Scheme and ML. The latter is the basis for langauges like Miranda, Haskell, and Orwell.

The original PCF is a very tiny language, in the sense that it only contains a few operators more than the lambda-calculus: successor, predecessor, test is-zero, conditional and fixpoint. We will consider a sligthly richer language as it is more suitable to our purpose. Also, the original PCF is typed a' la Church, in the sense that every variable is explicitly decorated with a type. In order to be more general (so to capture also the implicitly typed languages like ML) we will not make this assumption.

Syntax

The syntax of (our extension of) PCF is the following:
   Term ::= Var| \Var.Term | Term Term        % lambda terms 
          | Num | true | false                % numerical and boolean constants
          | Term Op Term                      % numerical ops and comparison 
          | if Term then Term else Term       % conditional
          | (Term,Term) | fst Term | snd Term % pairs and projections
          | let Var = Term in Term            % term with a local declaration 
          | fix                               % the fixpoint operator (Y) 
Var and Num are syntactical categories which generate the set of term variables and the set of (representations of) integer numbers. Op is a syntactical category which generates the numerical operations +, *, - and /, and the comparison operation =.

Type system

The following grammar defines the type expressions for the above language.

  Type ::= int             % integers 
         | bool            % booleans 
         | TVar            % type variable
         | Type -> Type    % functional type
         | Type * Type     % cartesian product type
TVar is a syntactical category which generates the set of type variables (distinguished from the term variables above).

The rules of the type system are those of the system of Curry (for term variables, abstraction and application) plus the following ones:

  --------------  for any numerical constant n
   G |- n : int


 
  ------------------    -------------------
   G |- true : bool      G |- false : bool



   G |- M : int   G |- N : int                     G |- M : int   G |- N : int
  ----------------------------- op = +,*,- or /   -----------------------------
        G |- M op N : int                               G |- M = N : bool



   G |- M : bool   G |- N : A  G |- P : A
  ----------------------------------------  
        G |- if M then N else P : A 



   G |- M : A   G |- N : B       G |- M : A * B      G |- M : A * B       
  --------------------------    ----------------    ----------------
      G |- (M,N) : A * B         G |- fst M : A      G |- snd M : B


 
  G |- M : A    G, x : A |- N : B
  ---------------------------------
       G |- let x = M in N : B



  --------------------------
   G |- fix : (A -> A) -> A
Note that the presence of the rule for the fixpoint breaks the analogy between inhabited types and intuitionistic validity. In fact, by using the rules for fix and for application we get that fix(\x.x) has generic type A, for any A. Namely, any A is inhabited in this system; and clearly, not any A is intuitionistically valid.

Note: The rule for the let construct given above is the one which is usually considered in (the extensions of) PCF, but it is only an approximation of the real rule used, for instance, in ML. The real one is more complicated and requires notions that we have not introduced yet. We might see it in future lectures.

Operational semantics

The importance of the operational semantics of PCF comes from the fact that every real programming language (not only the functional ones), has a "functional subset", formed by the "expressions", i.e. syntactical entities which represent a value (like for instance 4 + factorial(3), which represents the value 10). The process of calculating the value of an expression is called "evaluation".

The notion of evaluation is based essentially on beta reduction. The way beta-reduction is formalized in the lambda calculus, however, is "too liberal", in the sense that a given term usually gives rises to several possible reductions, and it is not extablished (except for the terms in normal form) when the reduction process should end.

When specifying an operational semantics, we should therefore fix:

We will consider a "big-step" semantics, in the sense that we will consider statements of the form

   M eval N
meaning: M reduces to the "value" N according to the given evaluation strategy. In contrast, in a "small-step" semantics N is not forced to be a value, and usually we would need a sequence of (small) steps to reach a value.

Independently from the above choices, we want the definition of evaluation to be sound with respect to beta reduction, in the sense that, for a lambda calculus term M, if M eval N then M ->> N (i.e. N can be obtained from M by beta reduction). As for the reverse (completeness), we do not want necessarily to impose it. We will see in fact that the eager and the lazy strategies differ in this issue: the lazy semantics is complete and the eager is not.

Eager operational semantics

In the eager semantics, the canonical terms (i.e. the values) are defined inductively as follows: The rules of the eager semantics are the following: Note that even if this semantics is called "eager", there are some rules which do not obey the call-by-value discipline. These are the fixpoint and the conditional rule. (The first is lazy, the second is mixed, i.e. partially lazy on the second and on the third argument.) If they were formalized in the call-by-value fashion, then in this semantics it would not be possible to define recursive functions. (This is the reason why we consider an extended lambda calculus for studying reduction strategies: the fixpoint and the conditional operators could be encoded in the lambda calculus, but then their semantics would be determined by the application rule.)

Lazy operational semantics

In the lazy semantics, the canonical terms are defined as follows: The difference wrt the eager semantics is that pairs are canonical independently from the form of the arguments. The reason for this choice is that, if we want to be able to define lazy functions, we need some of the basic operators to be lazy as well.

The rules of the lazy semantics are the following (we list only those which differ from the corresponding rules in the eager semantics)

Programming in lazy languages

We present here some examples of programs that can be written in a lazy language like Haskell. We will consider functions on streams, which can be seen as "potentially infinite lists". More precisely, streams can be formalized as a variant of lists, where the cons constructor is lazy on the second argument. We consider the following signature for streams: The semantics of these operators is as follows:
      M eval P           M eval (N::P)      M eval (N::P)  P eval Q
--------------------    ---------------    ------------------------- 
 (M::N) eval (P::N)      (hd M) eval N           (tl M) eval Q

Example: the stream of natural numbers

A function which generates the stream of natural numbers starting from n can be defined as follows:
    fun nats n = n :: (nats (n+1));
Note that in a eager language like ML a call of nats would end up in a loop (since recursion is unguarded). On the contrary, in Haskell, if we write for instance an expression like
    hd (tl (nats 0));
its evaluation terminates and gives the value 1.

Example: the sequence of factorial numbers

A function which generates the stream of factorial numbers (0!::1!::2!::3!...) can be defined as follows:
    fun facts = 1 :: (times (nats 2) facts);
where times is a function which takes two input steams of numbers and outputs the stream of the pairwise products:
    fun times (a::r) (b::s) = (a*b) :: (times r s);

Example: the sequence of prime numbers

The following is the definition of a function which generates the stream of prime numbers starting from 2 with the method called "Eratosthenes Sieve"
    fun primes = sieve (nats 2);
where sieve is a function which outputs the first element a of the input stream, and then creates a filter that will let pass only those elements, in the rest of s, which are not divisible by a. Sieve can be defined as follows:
    fun sieve (a::s) = a :: (sieve (filter a s));
And filter can be defined as follows:
    fun filter a (b::s) = if (b mod a) = 0 then filter a s
                                           else b :: (filter a s);

Semantics of lists in ML

For completeness, we give here the semantics of lists in ML (and in eager languages in general). The rules are as follows:
 M eval P   N eval Q      M eval (N::P)      M eval (N::P)
---------------------    ---------------    ---------------
 (M::N) eval (P::Q)       (hd M) eval N      (tl M) eval P

Correctness and completeness of eager and lazy semantics

t is natural to ask what is the correspondence between the notion of beta reduction and these semantics, when restricted to the sub-language corresponding to the lambda calculus,

Theorem (Soundness of eager semantics) If M is a lambda term, and M eval N holds in the early semantics, then M ->> N (M beta-reduces to N).

The vice versa does not hold. Take for instance the term M = (\x y. y) P N, where P is any term whose evaluation does not terminate (for example, Y). We have that M beta-reduces to N, but, if the evaluation of P does not terminate, then the evaluation of M does not terminate either.

For the lazy semantics, on the contrary, also the other directions holds, at least in a weak form:

Theorem (Soundness and weak completeness of the lazy semantics) If M is a lambda term, and M eval N holds in the lazy semantics, then M ->> N holds. Viceversa, if M ->> N holds, then M eval P holds in the lazy semantics for some P such that P ->> N.

In the completeness part of the above theorem, in general N is different from P. Consider for instance M = \x. P, where P ->> Q. We have that M ->> \x. Q, but we cannot evaluate M to (\x. Q), since M is already in canonical form.

Simulating lazy functions in eager languages

In a higher order eager language, it is in general possible to simulate lazy functions by encoding its arguments as abstractions (i.e. functions). In fact, abstractions are canonical forms, hence they are not evaluated.

For instance, we can encode streams and its constructors/selectors in ML as follows:

   datatype 'a stream = empty | cons of 'a * (unit -> 'a stream);
   
   fun head (cons(a,f)) = a;
   fun tail (cons(a,f)) = f();
(we are obliged to use different names than ::, hd and tl, because the latter are reserved for the (eager) lists, which in ML are predefined). Now we can define function on streams in the usual way. For instance, the functions nats, times and facts of previous lecture can be defined as follows:
   fun nats n = cons(n, fn() => nats(n+1));
   fun times r s = cons((head r)*(head s), fn() => times (tail r) (tail s));
   fun facts () = cons(1, fn () => times (facts ()) (nats 2));
(here we need to give an argument to facts only to satisfy the ML constraint on the syntax of functions.) Now, we can define, for instance
   val s = facts();
The following are examples of interactions with ML (after giving the above definitions):
   - head(tail s);
   val it = 2 : int
   - head(tail(tail(s)));
   val it = 6 : int
   - head (tail(tail(tail(tail s))));
   val it = 120 : int