Search the web
Sign In
New User? Sign Up
ocaml_beginners · Ocaml Beginners
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5749 - 5778 of 11540   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5749
On the subject of laziness, is the implementation using co-routines or some alternative. What is the rationale for the choice made by the implementors of...
pranava108
Offline Send Email
Apr 2, 2006
5:45 pm
5750
... Great answer! I would just add that another useful learning exercise is to reimplement some of the HOFs from the standard library. List.map is a good one...
Matt Gushee
mcgushee
Offline Send Email
Apr 2, 2006
5:55 pm
5751
Hi, I've studied this issue before posting and am familiar with the position ocaml implementors take. Certain patches on the net developed by outsiders are...
pranava108
Offline Send Email
Apr 3, 2006
12:12 am
5752
... I've been trying to get this patch into OCaml for some time: http://caml.inria.fr/mantis/view.php?id=3866 It solves some of the above problem for bytecode,...
Richard Jones
rwmjones
Offline Send Email
Apr 3, 2006
9:38 am
5753
[...] ... my_var is not a closure, it's a value computed by a closure. Then when the value my_var is used 3 times, the closure to create the value my_var is...
Florent Monnier
fmonnier@...
Send Email
Apr 3, 2006
4:05 pm
5754
[...] ... No, it was not. --...
Florent Monnier
fmonnier@...
Send Email
Apr 3, 2006
4:05 pm
5755
Good day, Threads have been giving me a headache lately. Problem statement 1) using a subset of safe threading primitives write portable ocaml programs that...
pranava108
Offline Send Email
Apr 3, 2006
4:52 pm
5756
... Can you describe what problem you're trying to solve? Rich. -- Richard Jones, CTO Merjis Ltd. Merjis - web marketing and technology - http://merjis.com ...
Richard Jones
rwmjones
Offline Send Email
Apr 3, 2006
6:29 pm
5757
... What is the type of my_var? ... I think we need working code before we can say anything useful. ... Can you post your solution? -- Dr Jon D Harrop, Flying...
Jon Harrop
harropjon
Offline Send Email
Apr 3, 2006
6:35 pm
5758
Certainly. Thread main starts several threads - thr1, thr2, etc. thr1 starts two more threads thr1_1 and thr1_2. These threads run forever, except if an error...
pranava108
Offline Send Email
Apr 3, 2006
7:21 pm
5759
Hi, The raw module (in Lablgl i think) defines a function val of_float_array : float array -> kind:([< fkind] as 'a) -> 'a t I want to define a function which...
Chris Campbell
chrisdanx
Offline Send Email
Apr 4, 2006
8:26 pm
5760
... Something like that should work better: val raw_of_vertex_array : vertex_array -> int * (Raw.fkind Raw.t) ... -- Martin Jambon, PhD ...
Martin Jambon
BioMim
Offline Send Email
Apr 4, 2006
9:08 pm
5761
(I'm asking this here since I haven't heard back about my request to join the lablgtk mailing list yet...) Is there really nothing simpler than the GtkText...
Richard Lyman
richard.lyman@...
Send Email
Apr 5, 2006
2:57 am
5762
No, I mean what actual concrete problem you're trying to solve. What will this program do? Rich. -- Richard Jones, CTO Merjis Ltd. Merjis - web marketing and...
Richard Jones
rwmjones
Offline Send Email
Apr 5, 2006
10:03 am
5763
Thanks for expressing interest in my problem. Following is a relatively accurate description, yet I've omitted and obfuscated the description for privacy...
pranava108
Offline Send Email
Apr 5, 2006
2:33 pm
5764
... Basically I don't believe that this is a problem which OCaml can solve well. One fundamental problem that OCaml has is that the garbage collector is not...
Richard Jones
rwmjones
Offline Send Email
Apr 5, 2006
5:12 pm
5765
Hi, I'd like to hear recommendations for build tools to use with OCaml. As far as build tools goes, I have the most experience using ant with Java. What are...
Roger Levy
sinoslav
Offline Send Email
Apr 6, 2006
1:31 pm
5766
I use OMake. It's like Make but smarter. It can build OCaml and C programs out of the box and is generally much nicer than Make. Good documentation too. ...
Chris Campbell
chrisdanx
Offline Send Email
Apr 6, 2006
4:11 pm
5767
... Thanks. It isn't necessary to do so, since I've changed it to work with a kind parameter similar to the raw module, but is there no way to constrain the...
Chris Campbell
chrisdanx
Offline Send Email
Apr 6, 2006
4:12 pm
5768
... I too use omake, and like it quite a bit. Though I'm not sure if I'd quite call the documentation good (though this is one of my constant bitching points...
William D. Neumann
scoey13
Offline Send Email
Apr 6, 2006
4:45 pm
5769
... There's always good old GNU make. Below are the rules which I put in every Makefile. Rich. ... OCAMLCFLAGS := -g OCAMLCPACKAGES := -package...
Richard Jones
rwmjones
Offline Send Email
Apr 6, 2006
5:11 pm
5770
... I use GNU make, with OCamlMakefile, but I hate writing Makefiles in general. http://www.ocaml-tutorial.org/compiling_ocaml_projects I haven't given omake a...
Martin Jambon
BioMim
Offline Send Email
Apr 6, 2006
7:10 pm
5771
... To answer my own question: I guess I should have just tried to do what I needed before thinking that it would be hard (based only on the tutorials...
Richard Lyman
richard.lyman@...
Send Email
Apr 6, 2006
9:34 pm
5772
... omake looks quite good for me. What is even more interessting for me is an alternative to the automake/autoconf system. Thus such a thing exist? cheers ...
Michael Wohlwend
scheischeischei
Offline Send Email
Apr 7, 2006
12:47 pm
5773
... For pure OCaml programs you don't usually need automake/autoconf. Usually ocamlfind is sufficient, as in: ocamlfind ocamlc -package extlib -c my_prog.ml ...
Richard Jones
rwmjones
Offline Send Email
Apr 7, 2006
1:53 pm
5774
... Assuming, of course, that everything you need to include has been packaged for ocamlfind. I recently repackaged David Monniaux's mlgmp package, and my GMP...
William D. Neumann
scoey13
Offline Send Email
Apr 7, 2006
2:52 pm
5775
Unfortunately a lot of developers lose sight of the fact that a Makefile like specification is nothing but a DAG (directed acyclic graph) and create convoluted...
pranava108
Offline Send Email
Apr 7, 2006
3:44 pm
5776
Hello, when I have something like module Hello = struct print_endline "hello" end or something like module Hello = struct let a = print_endline "hello" end ...
Oliver Bandel
oliver@...
Send Email
Apr 7, 2006
4:34 pm
5777
... Yes. All of the values in the code are evaluated as they are encountered, including those inside a module. If you want to delay the evaluation of a ...
William D. Neumann
scoey13
Offline Send Email
Apr 7, 2006
4:47 pm
5778
... Within the file, initialization is top to bottom. Across modules: You have to specify the modules in dependency order when linking. So if B depends on A,...
Richard Jones
rwmjones
Offline Send Email
Apr 8, 2006
12:05 pm
Messages 5749 - 5778 of 11540   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help