Discussion
Refuting Myths about Polymorphism
I am addressing an article written by Mark Dominus named Subtypes and polymorphism:
References and Type Safety
In the second part of the article, Mark points out an example which he says demonstrates where Standard ML breaks type safety. In fact, he is passing along a common myth about the "value restriction" in Standard ML and other Hindley-Milner based languages. To state it quite simply up-front: the "value restriction" is not necessary to protect type safety. It is simply there to preserve an intuition about how code evaluates.
This is the example he presents. If you give this to a Standard
ML compiler, it will fail on the line beginning with val
a because of the "value restriction."
fun id x = x (* id : α → α *)
val a = ref id; (* a : ref (α → α) *)
fun not true = false
| not false = true ; (* not: bool → bool *)
a := not;
(!a) 13
If the value restriction were to be lifted, the code would still be type-safe. Mark's interpretation of the code is incorrect. But the thinking process which led him to his incorrect interpretation is itself the reason for the value restriction.
The Value Restriction
The restriction itself is simple to describe: if you have code that looks like this:
val x = ...
and the ... has a type involving polymorphism, then it must be a value syntactically.
ref id of type (α → α) ref is not a value -- it will
evaluate to a location-value. Also, it is polymorphic. Therefore the
value restriction applies, and the code is not permitted.
The value restriction is seemingly helping us preserve type safety. But that is a misconception. If you removed the value restriction, you could compile the above code, and it would still be type-safe.
The short answer to what would happen is this: the a
on the line a:=not and other one on the line (!a)
13 are not evaluating to same location-value! Therefore, you
are not, in fact, applying not to an integer. You are
applying id to an integer, which is perfectly fine.
Under the hood
To explain why this is the case, I need to show you that the code above is omitting important details about polymorphism. Those details are automatically reconstructed and inserted by the typechecker. Here is a version of the code that is decorated with the details after typechecking:
val id : ∀α. α → α = Λα. fn (x:α) => x
val a : ∀α. (α → α) ref = Λα. (ref{α → α}) (id{α})
val not : bool → bool
a{bool} := not;
((!{int → int}) (a{int})) 13
Whew! Now you can see why people prefer to let the typechecker deal with this stuff. But now the Hindley-Milner style types have been translated into a System F (aka polymorphic lambda-calculus) style language.
When you see the type α → α in H-M types, it's omitting the universal quantifier. Haskell folks are already familiar with it, because a popular extension allows the explicit use of ∀ (aka "forall"). All the type variables must be quantified in a ∀ placed at the beginning of the type.
The term which has a type beginning with ∀ is called Λ (aka "type-lambda"). Therefore, this term must be introduced everywhere a ∀ appears in the type. The typechecker rewrites your code to insert the necessary type-lambdas.
In order to use a polymorphic value (a term wrapped in a
type-lambda), you must apply a type to the type-lambda. This is
denoted t{T} in the above example. For example, to use
the polymorphic function id : ∀a. α → α, you must first
apply its type-lambda to the type that you want: (id{int}) 13 steps to 13.
Now, I can explain what is happening behind the scenes when you
use a. Since a is polymorphic, that means
it is wrapped in a type-lambda. In order to be used as a reference,
it must be applied to a type. For example:
a{bool} steps to (ref{bool → bool}) (id{bool}) which then steps to l1
where l1 of type (bool → bool) ref
is a location-value –- the result of evaluating a call to
ref.
On the other hand, later on we do:
a{int} steps to (ref{int → int}) (id{int}) which then steps to l2
where l2 is a different location-value. We've called
ref a second time, and it's given us a different
location.
The Unexpected
When Mark wrote val a = ref id he clearly did not
expect ref to be called more than once. But I have
demonstrated that is exactly what would happen if his code were to be
compiled and run.
This kind of behavior is type-safe; we never attempt to invoke
not on the integer 13 because the function
not is safely stored in an entirely different location.
It is possible to go ahead and prove the type safety of a language
like this with references. But clearly, the repeated computation of
ref is surprising, and might even be said to
be signs of a "leaky abstraction" in the Hindley-Milner type system.
It attempts to hide the details about type-lambdas, but they've
revealed themselves in the dynamic behavior of the code.
The "value restriction" then, is simply a measure put in place to prevent "surprising" behavior from occurring in the first place. By allowing only values syntactically, you will not end up with any evaluation after applying the type-lambda, and all is as expected.
- mrd's blog
- Login to post comments
Subtyping and Polymorphism
I am addressing an article written by Mark Dominus named Subtypes and polymorphism:
There are two parts to this article, the first discusses the fact that subtyping and polymorphism can lead to some unintuitive results. I won't repeat his point here, but just note that the term for the behavior of "List" here is called "invariant" and the incorrect behavior which he had assumed is called "covariant."
Java's broken arrays
While Java generic Lists are "invariant," Java arrays are "covariant." This is not due to some wonderful property of arrays, but in fact is a gigantic flaw in the Java language which breaks static type safety. As a result, arrays must carry run-time type information in order to dynamically check the type of objects being inserted. Consider this code:
String stringA[] = new String[1];
stringA[0] = "Hello";
Object objectA[] = stringA;
So far this seems okay -- String is a subtype of Object -- therefore it seems safe to say that String arrays are a subtype of Object arrays. This is called "covariant" behavior.
So if objectA is an array of Objects, and everything is a subtype of Object, then it should be okay to put an Integer there instead, right?
objectA[0] = 1;
but wait, now stringA[0] has an Integer in it! A String
array cannot have an Integer in it. Before it seemed that arrays
might be "covariant," but mutation makes it seem that arrays must be
"contravariant." We can't be both at the same time, so it seems
mutable arrays are "invariant" after all.
If you try running the code given above, you get:
Exception in thread "main" java.lang.ArrayStoreException: java.lang.Integer
clearly, a run-time type-check is being performed.
About Covariance, Contravariance, and Invariance
I've been using these terms, but haven't really defined them.
A type-constructor C is covariant iff:
for all types S,T, if S is a subtype of
T then C<S> is a subtype of
C<T>.
Similarly, for contravariance, if S is a subtype of
T then C<T> is a subtype of
C<S>. Note that S and T
have swapped.
Invariance (the name is confusing, I know) is the lack of covariance or contravariance.
It may be of interest to know that functions are contravariant in the input, but covariant in the output. Perhaps that is why the Java folks are not so eager to have function types!
Broken arrays and generics
The brokenness of Java arrays has impacted on the design of Java generics as well. Consider the following code that might be written if you were designing your own generic container of some sort:
public class Container<T> {
private T[] a;
So far so good, right? An array of some parameterized type seems reasonable.
public Container() {
a = (T[])new T[10];
}
}
Uh oh!
Container.java:5: generic array creation
a = (T[])new T[10];
^
Note: Container.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error
No can do. Java is jumping down my throat over this seemingly reasonable code. Why? Generic arrays are not permitted like this, because -- as described above -- Java arrays must carry run-time type information. But Generics promise total type erasure -- meaning NO run-time type information is kept. Sounds like they designed themselves into a corner when creating Java, and later, Generics.
Polymorphism is not Subtyping
Returning to the second part of the article, I want to dispel a few common misperceptions about polymorphism.
Mark Dominus: Then we define a logical negation function, not, which has type bool → bool, that is, it takes a boolean argument and returns a boolean result. Since this is a subtype of α → α, we can store this function in the cell referenced by a.
I want to make it absolutely clear that bool → bool is not a subtype of α → α. There is no notion of subtyping in basic Hindley-Milner, and it is still not the case even in a "loose" sense.
The easiest way to verify this for yourself is to find your nearest Standard ML (or similar) prompt and type this:
not : 'a -> 'a
and get a type error. not : bool → bool and it is
not of type α → α.
Now, his example does not typecheck in Standard ML because of the "value restriction." The value restriction does not exist to preserve type safety at all, but only to prevent programmer confusion.
This post has gone on too long about Java, so I am afraid it will wash out the more important points about polymorphism and the value restriction. I will leave it then, to the next post.
- mrd's blog
- Login to post comments
Do arrows, monads, monad transformers clash when a large app needs libraries which use each of these?
Now for my question
from my neophyte perspective, Clean has a single easy-to-use mechanism for state maintenance - uniqueness typing.
Haskell has monads.
But then it also has arrows now.
And so there are two XML products, one based on arrows and one based monads.
When one is developing a large project in Haskell, what does one do if certain libraries are done in arrows and others in monads and you need to use both? And what about monad-transformers? Is that not yet a 3rd complication?
A Java programmer only has objects to handle any concept. So the idea of one library doing one thing and another doing another does not come up.
So, is there a difficulty in large application development because of the clashing advanced functional metaphors of arrow, monad, monad transformer?
Let's face it. There are very few large-scale products shipped in Haskell. Period. I dont know how good that is. or why that is.
I suppose Galois is happy with haskell, but the lack of large useable apps make you wonder if something like what I mention is getting in the way.
About my level and interest haskell
I have been through SJT's book. Been through the Haskell Road. Been through Sethi's "Algorithms". Like Bird and Wadler's intro to FP.
Now, I first got interested in Haskell in 2003. I love haskell. It is profoundly elegant. I never quite got over the hump into making it useful... 8 years as a Perl developer spoils you. But as a Perl developer, I think very functionally and studying Haskell has helped me immensely. But i always run back to my crutches when the game gets tight.
An Exersize in Over-Engineering
Intro
Inspired by an old article on over engineering I decided to try and over design / bloat an event system (aka a timeout system). This is the same system I posted about earlier, but with fewer features and many more LOC.
Conception
The initial concept was clean, simple. It would handle hundreds of events, be useful for 80% of the cases (I do like the 80% rule). My event system state was this:
data EventState = EvtState { esEvents :: [Event],
esAlarm :: ClockTime,
esNextId :: EventId }
Each new event gets a new Id number, the 'NextId' is incremented, and the event is added to the time ordered list, 'esEvents'. 'esAlarm' is updated as necessary (atomically by the thread adding the event with an earlier expire time).
Functionally, there are 2 threads in the system and 'n' threads of event producers. One thread, eventExpire, would threadDelay until the soonest event needs to be expired. The other thread, watchAlarm, would keep an eye on esAlarm - if it was changed to an earlier time then an exception would be thrown to the eventExpire thread.
Theoretical Bugs!
Oh no! You could theoretically overflow the Int used to express EventId. I could use Integer, but that still has a theoretical limit and the memory used for ids would grow (eventually). So, I set off to redefine EventId from an Int to a (ClockTime,Int) combo. How do I know this doesn't overflow? Because my new state field which keeps track of the next event Id for each ClockTime (less the expired times), and if it does overflow for a given clock time I refuse to add the event.
Realistic Performance Issues
That's right! A close runner up for theoretical bugs is fixing performance. Why is this slow for large numbers of events? Well, adding events is O(n), expiring events can are in order in the list, and updating the alarm time is O(1).
Lets turn _everything_ into a mapping. This way most operations of interest are ~O(ln(n)) The new state will look like this:
type EventSet = (EventNumber, Map EventNumber (IO ()))
data EventSystem = EvtSys {
esEvents :: TVar (Map ClockTime EventSet), -- Pending Events
esThread :: TVar (Maybe ThreadId), -- Thread for TimerReset exceptions
esAlarm :: TVar ClockTime, -- Time of soonest event
esNewAlarm :: TVar Bool, -- new/earlier alarm
}
What is this in English? esEvents is a mapping of ClockTimes to a mapping of EventNumbers to IO Actions (and the next unique EventNumber is in there). Also, there is now esNewAlarm, so the alarmWatch can avoid throwing expires unnecessarily.
All in all this does OK, 3 seconds to add and execute 100,000 actions (vs a previous 38 seconds for 10,000).
Fixing Dropped Events
Now we have eliminated theoretical bugs and improved performance - whats left? Fixing real bugs of coarse! When running the test code (shamelessly stolen from control-timeout - thanks Adam!) I found some tests never finished and no more events were pending. The cause seems to be that between the event list being pruned of old events and those events being executed the thread was getting an exception (a new event was added with an earlier alarm). The solution is yet another thread and TVar (that's right, I've an irrational dislike of 'block'). Old events are atomically pruned and written to an 'expired' list - then the third thread, monitorExpiredQueue, can zero the queue and execute the actions. My new state has the one more TVar:
esExpired :: TVar [[EventSet]]
A Useful API
So now that I've finished all this, and we are two or three days after my original post, I need to make the API something useful. Current code looks like:
sys <- initEventSystem
(TOD sec ps) <- getClockTime
eid <- addEvent sys (TOD (sec+delay) ps) evt
...
if dontNukeThem then cancelEvent sys eid else return ()
-- explosives concept borrowed from recent -cafe example
Adam had a better idea for most use cases in that they work based on deltas. So I wrote a shim to provide the Control.Timeout API with the Control.Event engine (Control.Event.Timeout).
eid <- addTimeout act delay
if dontNukeThem then cancelTimeout eid else return ()
And an informal performance comparison is: Control.Event can add 100K events in 3 seconds Control.Timeout 100K 12 seconds Control.Event.Timeout 100K 58 seconds
Control.Event.Timeout calls getClockTime on every event add, so driving the Control.Event code with time deltas is really slow. Control.Timeout is obviously very good with time deltas.
- TomMD's blog
- Login to post comments
Data Parallel Bellman-Ford
Graph representation is as an edge-list.
bmf :: Int -> UArr (Int :*: Int :*: Double) -> Int -> UArr Double
bmf n es src = iterate rnd dm0 !! (n - 1)
where
dm0 = toU [ if i == src then 0 else inf | i <- [0 .. n - 1] ]
rnd dm =
updateU dm
(mapU (\ e ->
if distOf dm (destin e) > distOf dm (source e) + weight e
then (destin e) :*: (distOf dm (source e) + weight e)
else (destin e) :*: (distOf dm (destin e)))
es)
source = fstS . fstS
destin = sndS . fstS
weight = sndS
distOf dm u = dm !: u
inf :: Double
inf = 1 / 0
The above code uses NDP but only the sequential portions. In order to get parallelism I need to invoke the Distributed operations. However, there are also Unlifted.Parallel operations which hide the usage of the distributed ops.
bmf :: Int -> UArr (Int :*: Int :*: Double) -> Int -> UArr Double
bmf n es src = iterate (rnd es) dm0 !! (n - 1)
where
dm0 = toU [ if i == src then 0 else inf | i <- [0 .. n - 1] ]
{-# INLINE rnd #-}
rnd :: UArr (Int :*: Int :*: Double) -> UArr Double -> UArr Double
rnd es dm = updateU dm
. mapUP sndS
. filterUP fstS
. mapUP (\ e ->
let d = distOf dm (destin e)
d' = distOf dm (source e) + weight e
in if d > d'
then True :*: (destin e :*: d')
else False :*: (0 :*: 0))
$ es
mapUP is the unlifted parallelized version of mapU. However there's no updateUP. Looking into the code I spotted out a commented out version of updateUP. There are problems when figuring out what to do about multiple concurrent writes to one location. NESL specifies "arbitrary" resolution of conflicting concurrent writes. Unfortunately the commented code has bit-rotted and I haven't successfully managed to fix it.
I also added some filtering to prevent it from getting stuck writing Infinity over a real distance constantly, due to "arbitrary" resolution of conflicting writes in updateU. The iterative function is now factored out into its own toplevel definition, for clarity.
- mrd's blog
- Login to post comments
My Haskell Emacs configuration
I generally like some of the features that come with haskell-mode for Emacs. But I cannot reconcile my style with that of the "smart" indentation mode. I'm not too keen on the default indentation function of Emacs either, at least, not for Haskell code. I use the basic tab-to-tab-stop function but it needs a little tweaking to bring it down to reasonable levels of indentation.
Tabs should never be used.
(setq-default indent-tabs-mode nil)
I like align-regexp, a neat tool from Emacs 22.
(global-set-key (kbd "C-x a r") 'align-regexp)
Basic haskell-mode loading:
(add-to-list 'load-path "path/to/haskell-mode")
(load-library "haskell-site-file")
(add-to-list 'auto-mode-alist '("\\.hs\\'" . haskell-mode))
My indentation settings. I wrote my own "newline and indent" function which brings any code you split onto the newline back up to the same indentation level it was at previously.
(remove-hook 'haskell-mode-hook 'turn-on-haskell-indent)
;; Just use tab-stop indentation, 2-space tabs
(add-hook 'haskell-mode-hook
(lambda ()
(turn-on-haskell-doc-mode)
(turn-on-haskell-simple-indent)
(setq indent-line-function 'tab-to-tab-stop)
(setq tab-stop-list
(loop for i from 2 upto 120 by 2 collect i))
(local-set-key (kbd "RET") 'newline-and-indent-relative))
(defun newline-and-indent-relative ()
(interactive)
(newline)
(indent-to-column (save-excursion
(forward-line -1)
(back-to-indentation)
(current-column))))
And just in case you were wondering how to tweak syntax highlighting colors in your .emacs, here's what I do:
(set-face-bold-p 'font-lock-builtin-face nil)
(set-face-bold-p 'font-lock-comment-face nil)
(set-face-bold-p 'font-lock-function-name-face nil)
(set-face-bold-p 'font-lock-keyword-face nil)
(set-face-bold-p 'font-lock-variable-name-face nil)
(set-face-foreground 'font-lock-builtin-face "cyan")
(set-face-foreground 'font-lock-comment-face "pale green")
(set-face-foreground 'font-lock-function-name-face "green")
(set-face-foreground 'font-lock-variable-name-face "pale green")
I think it's fairly self-explanatory. You can play around with the values and find what you like. M-x list-colors-display is a handy tool to list out all the possible colors along with examples.
- mrd's blog
- Login to post comments
Strongly Specified Functions
How to make writing easy functions hard.
Kidding aside, a strongly specified function in Coq not only computes but simultaneously provides a proof of some property. The construction of the proof is integrated with the body of the function. This differentiates it from "weakly" specified functions, which are written separately from the proof.
Proving properties about functions is one of the main practical uses of Coq. Unfortunately, it's more difficult than simply writing code. But it is more interesting (and useful) than, say, simple proofs about the monad laws. One thing I learned, the hard way, is that it's better to start small.
The first example to talk about is reverse. It has a simple inductive definition, so that isn't a big deal, like it can be for some things. It uses basic structural induction on lists, so I don't need to define my own well founded induction principle. Hopefully, it illustrates the meaning of "integrated computation and proof."
I've split the property up into two inductive definitions. The first one is the actual "reversed" relation between two lists. Notice that it is not necessarily in Set. The second definition is what actually gets constructed by the function. It says: in order to construct a reversed list of xs, you need to supply a list xs' and a proof of reversed xs xs'.
The definition is slightly different than other functions you may have seen in Coq (or not). It actually looks more like a theorem proof than a function. This is a good thing.
I use the refine tactic now extensively. This tactic allows you to specify an exact proof term, like exact, but also to leave "jokers" to be filled in by further elaboration. The two spots I've left correspond to the base case and the inductive case, which you should be able to figure out from the match. Side note: the return type-annotation is necessary, otherwise type reconstruction won't figure it out.
At this point, I've told Coq that there is a nil case and a "cons" case. The nil case is easy, so I just supplied an exact proof term. You can read that as saying: "The reverse of nil is nil and a proof of this is reversed_nil."
For the inductive case, I will use refine again to drill deeper into the function and the proof. Notice that the recursive call is made with match. This allows me to separate the recursively computed value xs' from the usage of the induction hypothesis Hxs'. There is a little trap here -- if you use automation prior to making the recursive call you may get a "Proof completed" message. But you won't be able to save the proof, because the "termination checker" will yell at you. The same thing happens if you incorrectly invoke the recursion.
The "proof completed" message isn't bogus -- it's just that the function the auto tactic had proven was not the function for which we were looking.
The refine statement provides the necessary hint to the theorem prover. I construct the returned data in a separate refine just to illustrate how you can drill down with the tool. This just leaves the simple proof that xs'++(x::nil) is in fact, the reverse.
Recursive Extraction pulls out all the computation-related (stuff in Set) bits while leaving behind the proof-related bits. If you want it in Haskell, as always, change the language with Extraction Language Haskell.
(All examples were written using Coq 8.1pl1)
- mrd's blog
- Login to post comments
Revisiting board-building in chess
So, in my last blog, we looked at the beginnings of a chess engine. That was nearly 2 months ago. I've been kicking around some possibilities for the last few months, trying to come up with a somewhat elegant solution. Ultimately, I've wound up completely refactoring what I started with. I'll be posting more on that here within the next few weeks, but I'm really excited by how one piece came out, so I'd like to show that part at least.
Last time, I mentioned FEN notation for the state of a chess game. Let's look at that in a bit more detail. Here's the FEN notation for the start of a game:
rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1
You can see, there are 6 space-separated fields in this string. What I want to write is this function:
loadFEN :: String -> GameState
...which constructs the state of the game from the FEN. Now, this is notoriously tedious in most languages, but the solution in haskell looks quite elegant to me.
So, let's see. Each field in the FEN is going to tell us something about how to construct the GameState. The first field tells us where the pieces are, the second tells us whose turn it is, the third deals with castling statuses, etc. So we can start with an empty state, and apply multiple functions to it, based on the fields, to build up a new state. That sounds like a fold pattern to me!
However, this seems to be a bit tricky at first. We'll want to apply a different function for each field. That is, the first function will look at that first field and build up the actual squares on the board with pieces. The second function will parse the indicator of whose turn it is, and make that change to the state, etc. So let's start by zipping these functions up with the fields they correspond with:
loadFEN fen = foldl apply emptyGameState (zip funcs fields)
where fields = words fen
funcs = [parseBoard, parseCastleStatus]
Here, I've just listed the functions for the first 2 fields, to give us an idea. The only mystery that's left is this apply function. Let's look at its type:
apply :: GameState -> (String -> GameState -> GameState, String) -> GameState
That is, it takes a current state, and a pair, consisting of a function and a field to apply it to, and a field, and returns a new state. Well, that's not so bad:
apply state (function, field) = function field state
Running this through the @pl formatter on lambdabot in #haskell gives us an ugly mess:
apply = (`ap` snd) . flip (flip . fst)
Hmm, this is interesting though, look at the flipping going on. What if we took the input in a different order? Suppose we wrote this:
apply (function, field) state = function field state
Running this through @pl gives the very elegant:
apply = ap fst snd
Thus, the final code winds up being:
loadFEN :: String -> GameState
loadFEN fen = foldl apply emptyGameState (zip funcs fields)
where fields = words fen
apply = flip (ap fst snd)
funcs = [parseBoard, parseCastleStatus]
Very nifty! Now all the real work gets moved off to smaller functions, which just have to worry about the particular field they're designed to work with. Not only that, but if I only want to deal with the first few fields for now, they're the only ones I have to parse, and I'll still wind up with a valid GameState.
- chessguy's blog
- Login to post comments
Coq and The Monad Laws: The Third
The Third Monad Law
The previous two articles introduced Coq and the first two Monad Laws. I am discussing the third one separately because it will take longer to prove.
The proof for the third law will proceed at first like the others, induction and some simplification.
Theorem third_law :
forall (A B C : Set) (m : list A)
(f : A -> list B) (g : B -> list C),
bind B C (bind A B m f) g =
bind A C m (fun x => bind B C (f x) g).
Proof.
induction m.
(* base case *)
simpl.
trivial.
(* inductive case *)
intros f g.
simpl.
unfold bind.
unfold bind in IHm.
Which brings us to this state in the interactive theorem prover.
1 subgoal
A : Set
B : Set
C : Set
a : A
m : list A
IHm : forall (f : A -> list B) (g : B -> list C),
flat_map g (flat_map f m) =
flat_map (fun x : A => flat_map g (f x)) m
f : A -> list B
g : B -> list C
============================
flat_map g (f a ++ flat_map f m) =
flat_map g (f a) ++ flat_map (fun x : A => flat_map g (f x)) m
At this point, if we could rewrite
flat_map g (f a ++ flat_map f m)
into
flat_map g (f a) ++ flat_map g (flat_map f m))
then we would be able to apply the Inductive Hypothesis and
be home free.
The "cut" tactic allows you to make an assumption, and then later come back and prove your assumption correct. Using "cut",
cut (flat_map g (f a ++ flat_map f m) =
flat_map g (f a) ++ flat_map g (flat_map f m)).
intro Distrib.
rewrite Distrib.
rewrite IHm.
reflexivity.
the original goal is easily solved. But Coq has generated an additional subgoal: we must now prove that this cut is correct.
1 subgoal
A : Set
B : Set
C : Set
a : A
m : list A
IHm : forall (f : A -> list B) (g : B -> list C),
flat_map g (flat_map f m) =
flat_map (fun x : A => flat_map g (f x)) m
f : A -> list B
g : B -> list C
============================
flat_map g (f a ++ flat_map f m) =
flat_map g (f a) ++ flat_map g (flat_map f m)
We'll proceed by induction on f a which
has inductive type list B.
induction (f a).
(* base case *)
simpl.
reflexivity.
(* inductive case *)
simpl.
rewrite IHl.
rewrite app_ass.
reflexivity.
Qed.
End ListMonad.
All done. We only needed the association property of list append,
which I found by querying SearchAbout app.
Summary
Here is a much shorter proof which takes advantage of some of Coq's automated tactics.
Theorem third_law' :
forall (A B C : Set) (m : list A)
(f : A -> list B) (g : B -> list C),
bind B C (bind A B m f) g =
bind A C m (fun x => bind B C (f x) g).
Proof.
induction m; simpl; intuition.
replace (bind B C (f a ++ bind A B m f) g)
with (bind B C (f a) g ++ bind B C (bind A B m f) g);
[ rewrite IHm
| induction (f a); simpl; auto;
rewrite app_ass; rewrite IHl
]; auto.
Qed.
On a final note, Coq has the ability to extract code into several different languages.
Extraction Language Haskell.
Recursive Extraction bind ret.
results in
module Main where
import qualified Prelude
data List a = Nil | Cons a (List a)
app l m = case l of
Nil -> m
Cons a l1 -> Cons a (app l1 m)
flat_map f l = case l of
Nil -> Nil
Cons x t -> app (f x) (flat_map f t)
ret :: a1 -> List a1
ret a = Cons a Nil
bind :: (List a1) -> (a1 -> List a2) -> List a2
bind m f = flat_map f m
- mrd's blog
- Login to post comments
Coq and The Monad Laws: The First and Second
The First Monad Law
In the previous article, I gave a brief introduction to Coq and the List Monad. I listed three Theorems but did not prove them. Now I will show how to prove the first two Theorems.
Here is the context of our code:
Section ListMonad.
Require Import List.
Definition ret (A : Set) (a : A) := a :: nil.
Definition bind (A B : Set) (m : list A) (f : A -> list B) :=
flat_map f m.
The first Theorem, restated:
Theorem first_law : forall (A B : Set) (a : A) (f : A -> list B),
bind A B (ret A a) f = f a.
At this point, Coq will enter an interactive proof mode. In
coqtop, the prompt will change accordingly. In
ProofGeneral Emacs, a new window will pop up. In either case,
you will be presented with a view of the current assumptions and goals
that looks like this:
1 subgoal
============================
forall (A B : Set) (a : A) (f : A -> list B), bind A B (ret A a) f = f a
There are no assumptions, and one goal to prove.
Proof.
intros A B a f.
Coq proofs can proceed with "tactics" which instruct the
proof engine to perform a certain operation, or series of operations.
In this case, we are introducing assumptions named A,B,a,f
drawn from the antecedents of the goal. Now the proof view looks like this:
1 subgoal
A : Set
B : Set
a : A
f : A -> list B
============================
bind A B (ret A a) f = f a
The "unfold" tactic takes the definition of the given argument and tries to substitute it directly into the goal.
unfold bind.
unfold ret.
unfold flat_map.
Now we have a vastly simplified goal.
1 subgoal
A : Set
B : Set
a : A
f : A -> list B
============================
f a ++ nil = f a
Everyone knows that appending nil to a list returns the same list.
But how do we explain this to Coq? Search and find out if Coq already
knows about this fact.
SearchRewrite (_ ++ nil).
SearchRewrite is used to search for theorems of the form
a = b which can be used to rewrite portions of your goal.
I use the wildcard _ to indicate that I want to find any
theorem involving appending nil to anything. Coq finds:
app_nil_end: forall (A : Set) (l : list A), l = l ++ nil
We can use this with the "rewrite" tactic. We want to
rewrite our code which looks like l ++ nil
into l. That is a right-to-left rewrite,
which is specified like so:
rewrite <- app_nil_end.
And finally we have a goal f a = f a which
Coq can trivially solve with
reflexivity.
Or any of the more automated tactics, like "trivial" or "auto".
Qed.
The first monad law is discharged and proven. You can run
Check first_law. to see the new theorem.
The Second Monad Law
This second proof will proceed by induction on the structure of the
list parameter m. The "induction" tactic causes Coq to
try a proof by induction. The proof will be split into two parts,
based on case breakdown of the list type.
Theorem second_law : forall (A : Set) (m : list A),
bind A A m (ret A) = m.
Proof.
induction m.
nil, and
the second is the inductive case for cons.
2 subgoals
A : Set
============================
bind A A nil (ret A) = nil
subgoal 2 is:
bind A A (a :: m) (ret A) = a :: m
The base case is easy, the "simpl" tactic can take care of the unfolding and simplification.
simpl.
reflexivity.
The inductive case is also straightforward, because
after the "simpl" step, the Inductive Hypothesis is
already applicable. The appropriate IHm
assumption is provided by the "induction" tactic.
simpl.
rewrite IHm.
reflexivity.
Qed.
Summary
The full proofs, minus the commentary:
Theorem first_law : forall (A B : Set) (a : A) (f : A -> list B),
bind A B (ret A a) f = f a.
Proof.
intros A B a f.
unfold bind.
unfold ret.
unfold flat_map.
rewrite <- app_nil_end.
reflexivity.
Qed.
Theorem second_law : forall (A : Set) (m : list A),
bind A A m (ret A) = m.
Proof.
induction m.
(* base case *)
simpl.
reflexivity.
(* inductive case *)
simpl.
rewrite IHm.
reflexivity.
Qed.
Next time, the Third Monad Law, and a more complicated proof.
- mrd's blog
- Login to post comments