Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
358 views
in Technique[技术] by (71.8m points)

functional programming - Assisting Agda's termination checker

Suppose we define a function

f : N o N
f 0 = 0
f (s n) = f (n/2) -- this / operator is implemented as floored division.

Agda will paint f in salmon because it cannot tell if n/2 is smaller than n. I don't know how to tell Agda's termination checker anything. I see in the standard library they have a floored division by 2 and a proof that n/2 < n. However, I still fail to see how to get the termination checker to realize that recursion has been made on a smaller subproblem.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Agda's termination checker only checks for structural recursion (i.e. calls that happen on structurally smaller arguments) and there's no way to establish that certain relation (such as _<_) implies that one of the arguments is structurally smaller.


Digression: Similar problem happens with positivity checker. Consider the standard fix-point data type:

data μ_ (F : Set → Set) : Set where
  fix : F (μ F) → μ F

Agda rejects this because F may not be positive in its first argument. But we cannot restrict μ to only take positive type functions, or show that some particular type function is positive.


How do we normally show that a recursive functions terminates? For natural numbers, this is the fact that if the recursive call happens on strictly smaller number, we eventually have to reach zero and the recursion stops; for lists the same holds for its length; for sets we could use the strict subset relation; and so on. Notice that "strictly smaller number" doesn't work for integers.

The property that all these relations share is called well-foundedness. Informally speaking, a relation is well-founded if it doesn't have any infinite descending chains. For example, < on natural numbers is well founded, because for any number n:

n > n - 1 > ... > 2 > 1 > 0

That is, the length of such chain is limited by n + 1.

on natural numbers, however, is not well-founded:

n ≥ n ≥ ... ≥ n ≥ ...

And neither is < on integers:

n > n - 1 > ... > 1 > 0 > -1 > ...

Does this help us? It turns out we can encode what it means for a relation to be well-founded in Agda and then use it to implement your function.

For simplicity, I'm going to bake the _<_ relation into the data type. First of all, we must define what it means for a number to be accessible: n is accessible if all m such that m < n are also accessible. This of course stops at n = 0, because there are no m so that m < 0 and this statement holds trivially.

data Acc (n : ?) : Set where
  acc : (? m → m < n → Acc m) → Acc n

Now, if we can show that all natural numbers are accessible, then we showed that < is well-founded. Why is that so? There must be a finite number of the acc constructors (i.e. no infinite descending chain) because Agda won't let us write infinite recursion. Now, it might seem as if we just pushed the problem back one step further, but writing the well-foundedness proof is actually structurally recursive!

So, with that in mind, here's the definition of < being well-founded:

WF : Set
WF = ? n → Acc n

And the well-foundedness proof:

<-wf : WF
<-wf n = acc (go n)
  where
  go : ? n m → m < n → Acc m
  go zero    m       ()
  go (suc n) zero    _         = acc λ _ ()
  go (suc n) (suc m) (s≤s m<n) = acc λ o o<sm → go n o (trans o<sm m<n)

Notice that go is nicely structurally recursive. trans can be imported like this:

open import Data.Nat
open import Relation.Binary

open DecTotalOrder decTotalOrder
  using (trans)

Next, we need a proof that ? n /2? ≤ n:

/2-less : ? n → ? n /2? ≤ n
/2-less zero          = z≤n
/2-less (suc zero)    = z≤n
/2-less (suc (suc n)) = s≤s (trans (/2-less n) (right _))
  where
  right : ? n → n ≤ suc n
  right zero    = z≤n
  right (suc n) = s≤s (right n)

And finally, we can write your f function. Notice how it suddenly becomes structurally recursive thanks to Acc: the recursive calls happen on arguments with one acc constructor peeled off.

f : ? → ?
f n = go _ (<-wf n)
  where
  go : ? n → Acc n → ?
  go zero    _       = 0
  go (suc n) (acc a) = go ? n /2? (a _ (s≤s (/2-less _)))

Now, having to work directly with Acc isn't very nice. And that's where Dominique's answer comes in. All this stuff I've written here has already been done in the standard library. It is more general (the Acc data type is actually parametrized over the relation) and it allows you to just use <-rec without having to worry about Acc.


Taking a more closer look, we are actually pretty close to the generic solution. Let's see what we get when we parametrize over the relation. For simplicity I'm not dealing with universe polymorphism.

A relation on A is just a function taking two As and returning Set (we could call it binary predicate):

Rel : Set → Set?
Rel A = A → A → Set

We can easily generalize Acc by changing the hardcoded _<_ : ? → ? → Set to an arbitrary relation over some type A:

data Acc {A} (_<_ : Rel A) (x : A) : Set where
  acc : (? y → y < x → Acc _<_ y) → Acc _<_ x

The definition of well-foundedness changes accordingly:

WellFounded : ? {A} → Rel A → Set
WellFounded _<_ = ? x → Acc _<_ x

Now, since Acc is an inductive data type like any other, we should be able to write its eliminator. For inductive types, this is a fold (much like foldr is eliminator for lists) - we tell the eliminator what to do with each constructor case and the eliminator applies this to the whole structure.

In this case, we'll do just fine with the simple variant:

foldAccSimple : ? {A} {_<_ : Rel A} {R : Set} →
                (? x → (? y → y < x → R) → R) →
                ? z → Acc _<_ z → R
foldAccSimple {R = R} acc′ = go
  where
  go : ? z → Acc _ z → R
  go z (acc a) = acc′ z λ y y<z → go y (a y y<z)

If we know that _<_ is well-founded, we can skip the Acc _<_ z argument completly, so let's write small convenience wrapper:

recSimple : ? {A} {_<_ : Rel A} → WellFounded _<_ → {R : Set} →
            (? x → (? y → y < x → R) → R) →
            A → R
recSimple wf acc′ z = foldAccSimple acc′ z (wf z)

And finally:

<-wf : WellFounded _<_
<-wf = {- same definition -}

<-rec = recSimple <-wf

f : ? → ?
f = <-rec go
  where
  go : ? n → (? m → m < n → ?) → ?
  go zero    _ = 0
  go (suc n) r = r ? n /2? (s≤s (/2-less _))

And indeed, this looks (and works) almost like the one in the standard library!


Here's the fully dependent version in case you are wondering:

foldAcc : ? {A} {_<_ : Rel A} (P : A → Set) →
          (? x → (? y → y < x → P y) → P x) →
          ? z → Acc _<_ z → P z
foldAcc P acc′ = go
  where
  go : ? z → Acc _ z → P z
  go _ (acc a) = acc′ _ λ _ y<z → go _ (a _ y<z)

rec : ? {A} {_<_ : Rel A} → WellFounded _<_ →
      (P : A → Set) → (? x → (? y → y < x → P y) → P x) →
      ? z → P z
rec wf P acc′ z = foldAcc P acc′ _ (wf z)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...