From: Brian Hurt <bhurt@spnz.org>
To: Oliver Bandel <oliver@first.in-berlin.de>
Cc: caml-list@yquem.inria.fr
Subject: Re: FP/IP and performance (in general) and Patterns... (Re: [Caml-list] Avoiding shared data)
Date: Tue, 4 Oct 2005 19:45:12 -0500 (CDT) [thread overview]
Message-ID: <Pine.LNX.4.63.0510041919060.9226@localhost.localdomain> (raw)
In-Reply-To: <20051004164700.GA494@first.in-berlin.de>
On Tue, 4 Oct 2005, Oliver Bandel wrote:
> Most often people say, imperative is faster in most of all
> cases, and only in some cases FP might be faster.
The general argument here is that if the FP solution is faster, the
imperitive language can just implement the FP solution. My answer to that
is that imperitive programming languages discourage you from thinking in
certain ways rather strongly- while the FP solution may be faster, it's
not "natural".
The big advantage of FP programming IMHO is not performance, but instead
*correctness*. With today's multi-gigahertz machines with multi-gigabytes
of memory, performance isn't as critical as it used to be. But
correctness- especially automatically gaurenteed correctness on projects
spanning hundreds of thousands of lines of code and dozens of developers
maintained over decades of time- starts becoming critical. I'd quite
happily trade off 10% performance for correctness, or even 50%
performance.
FP is a huge gain in correctness, because it allows me to *control
mutability*. If I pass a mutable data structure to a block of code there
is an instant implicit contract between the caller and the callee on how
(or wether) to modify the mutable data structure. It doesn't matter what
the contract is- wether it's to not modify the structure at all, to allow
optional modification (either unlimited or only in certain ways), or to
require certain modifications- a dependency between the two different
peices of code exists. And this dependency, this contract, is probably
undocumented and always unchecked by the compiler, which means it's a
maintaince nightmare waiting to happen. One peice of code gets modified
to violate the contract, perhaps even unknowingly, or perhaps due to some
changing requirement, and untouched code thousands of lines away suddenly
breaks.
Note that such a bidirectional dependency can be implemented in functional
code- the called code returns a new copy of the modified structure to the
calling code, which the calling code then adopts and uses. But notice
that such a bidirectional dependency is explicitly stated in the code, and
automatically checked by the compiler. And the calling code has the
option of wether or not to allow the modification (or to use both the old
and the new copy).
Java programmers are begining to tumble to this advantage- notice the
increasing popularity of immutable objects (starting with Int and Float),
and Java Beans.
> I recently had a discussion about some OO-patterns
> ( so called "GoF"-Book) and tried to solve some of them with
> OCamls module system.
> Adapter and bridge was talked about. Adapter was easy in writing a simple
> wrapper.
> Bridge could be done with a functor. :)
Some of the patterns are doable with modules. Singleton, for example, is
a classic module pattern. Many of the patterns aren't, however. An
important comment here is that modules are NOT weird and broken objects.
A better point of comparison is C++ templates, except that 95+% of the use
of templates in C++ is to implement universal types, i.e. a C++ programmer
writes "list<A>" where an Ocaml programmer would write "'a list".
>
> Another interesting theme in this respect is: If not only some patterns
> were adapted to Fp, but the whole problem solving approach is different,
> which patterns will be unnevcessary then, because the whole structure of
> the software will be different...?!
There are patterns in every programming idiom. The GoF book was just
Object Oriented patterns- but there are procedural patterns, and
functional patterns, and logic patterns, etc.
Brian
next prev parent reply other threads:[~2005-10-05 0:44 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-25 21:32 Avoiding shared data Martin Chabr
2005-09-26 0:23 ` [Caml-list] " Bill Wood
2005-09-26 7:57 ` Claudio Sacerdoti Coen
2005-09-26 8:17 ` William Lovas
2005-09-26 21:07 ` Ant: " Martin Chabr
2005-09-26 22:08 ` Jon Harrop
2005-09-30 22:57 ` Oliver Bandel
2005-10-01 0:07 ` Pal-Kristian Engstad
2005-10-01 5:46 ` Bill Wood
2005-10-01 8:27 ` Wolfgang Lux
2005-10-01 18:02 ` Wolfgang Lux
2005-10-01 21:50 ` Ant: " Martin Chabr
2005-10-01 12:34 ` Oliver Bandel
2005-10-01 13:58 ` Bill Wood
2005-10-01 21:05 ` Ant: " Martin Chabr
2005-10-03 0:41 ` skaller
2005-10-03 1:13 ` Seth J. Fogarty
2005-10-03 13:09 ` Thomas Fischbacher
2005-10-03 14:57 ` skaller
2005-10-03 20:03 ` Ant: " Martin Chabr
2005-10-03 20:25 ` Thomas Fischbacher
2005-10-03 21:08 ` Jon Harrop
2005-10-04 18:06 ` Ant: " Martin Chabr
2005-10-04 18:32 ` Jon Harrop
2005-10-04 2:53 ` skaller
2005-10-04 16:15 ` Brian Hurt
2005-10-04 16:47 ` FP/IP and performance (in general) and Patterns... (Re: [Caml-list] Avoiding shared data) Oliver Bandel
2005-10-04 22:38 ` Michael Wohlwend
2005-10-05 0:31 ` Jon Harrop
2005-10-04 22:39 ` Christopher A. Watford
2005-10-04 23:14 ` Jon Harrop
2005-10-05 12:10 ` Oliver Bandel
2005-10-05 13:08 ` Jon Harrop
2005-10-05 15:28 ` skaller
2005-10-05 20:52 ` Ant: " Martin Chabr
2005-10-05 23:21 ` Markus Mottl
2005-10-06 16:54 ` brogoff
2005-10-05 0:45 ` Brian Hurt [this message]
2005-10-04 18:09 ` Ant: Re: Ant: Re: Ant: Re: Ant: Re: [Caml-list] Avoiding shared data Martin Chabr
2005-10-05 8:42 ` skaller
2005-10-05 11:14 ` Andrej Bauer
2005-10-01 21:36 ` Ant: Re: Ant: " Martin Chabr
2005-10-03 11:51 ` getting used to FP-programming (Re: Ant: Re: Ant: Re: [Caml-list] Avoiding shared data) Oliver Bandel
2005-10-05 13:45 FP/IP and performance (in general) and Patterns... (Re: " Oliver Bandel
2005-10-05 23:20 ` William Lovas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.63.0510041919060.9226@localhost.localdomain \
--to=bhurt@spnz.org \
--cc=caml-list@yquem.inria.fr \
--cc=oliver@first.in-berlin.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox