http://qs1969.pair.com?node_id=427914


in reply to Re^9: Better mousetrap (getting top N values from list X)
in thread Better mousetrap (getting top N values from list X)

It would be heaven-on-earth if we only had to worry about compiler bugs.

Ah! But the promise of provably correct code does not imply that you'll never code any errors. It just means if you stick to using proven correct implementations of provably algoithms, then you should only suffer errors at the hands of the compiler, hardware or cosmic rays.

But first you have to

But then you have to look at what a provably correct algorithm looks like. The simplest one I have seen is that to determine how long a string is, you store it as a list of characters and then determine the length of the list recursively. The length of the list is 1 + length of the tail of the list.

Now, if you have to store every string as a (linked?) list of it's individual characters, and then count them recursively everytime you need to know how long that string is--I'm thinking lots of memory and very slow. Imagine trying to process huge XML files that way?

And most FP compilers (common lisps, haskell, ocaml, etc.) are self-hosted if for no other reason then it shows the compilier writers are willing to eat their own dog food.

Maybe I am playing with the wrong haskell implementation, but Hugs98 certainly isn't self-hosted. It uses C, and from what I've looked at, it certainly doesn't process it source code in terms of lists. In fact the C source appears to be pretty tighly coded.

And it is far from fast relative to Perl for example. I cannot imagine it would be any faster if it were written in Haskell.

It would be an interesting exercise to compare processing an huge XML file with Haskell and the same file with Perl--even using a native Perl parser--but of course you can't, because you cannot get hold of an XML parser written in Haskell. A gazillion implementations of all the classic CS algorithms, but nothing that does real processing in the real world--as evidenced by my searches to date anyway.

I'd love to eat my words on this. If you know of a Haskell implementation of a XML library (or any other seriously heavy real-world task) I'd love to take a look at it. Everything I have found so far is pretty simple (algorithms; not the code).


Examine what is said, not who speaks.
Silence betokens consent.
Love the truth but pardon error.

Replies are listed 'Best First'.
Perl6 && Pugs
by sleepingsquirrel (Chaplain) on Feb 04, 2005 at 21:16 UTC
    And as long as we're talking perl6 and haskell, I thought we should also mention pugs the beginning of a perl6 interpreter written in haskell.


    -- All code is 100% tested and functional unless otherwise noted.

      I've been following Autrijus' posts--including the ""Sorry for posting"--"don't be, give us more"--"here's more"--"hey! This is the wrong place for that. That should be over there!" strip.

      It's good to see that someone is viewing the language 'spec' with a serious, practical and practiced eye. It's kind of confusing to only see answers to questions which suggest 30 possibilites and never reach a conclusion. Autrijus may just force some firming up and clarification.


      Examine what is said, not who speaks.
      Silence betokens consent.
      Love the truth but pardon error.
Re^11: Better mousetrap (getting top N values from list X)
by Anonymous Monk on Feb 04, 2005 at 10:38 UTC
    But the promise of provably correct code does not imply that you'll never code any errors.
    Beware of bugs in the above code; I have only proved it correct, not tried it.
                        -- Donald E. Knuth in a memo to Peter van Emde Boas
A reply falls below the community's threshold of quality. You may see it by logging in.