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 to share photos of your group with the world? 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 8155 - 8184 of 11541   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8155
... Do you have the extlib .cmx files installed? They are required before the compiler will consider inlining across modules. Rich. -- Richard Jones Red Hat...
Richard Jones
rwmjones
Offline Send Email
Jul 1, 2007
9:15 am
8156
Hi all, I am working though some example code from ocaml for scientists. I have an mli and accompanying ml file which I am compiling thus: ocamlc -c...
justin_henzie
Offline Send Email
Jul 1, 2007
4:48 pm
8157
Hi ! ( Replying to myself. ) ... The answer is yes : http://fabrice.marchant.free.fr/code/circul.ml.html So we can generate circular structures without any...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 1, 2007
5:05 pm
8158
... Sounds like you've started the intrange.ml file with module IntRange : INTRANGE = struct ... which is unnecessary (the compilation unit intrange.ml...
Jon Harrop
harropjon
Offline Send Email
Jul 1, 2007
5:08 pm
8159
Hi justin, ... Please do you have a link to "intrange" ? Fabrice...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 1, 2007
5:10 pm
8160
Looks like my email didn't make it to the ML... Maybe yahoo's groups didn't like the CCs, I'm trying again without them (hopefully they already received the ...
yahoogroups@...
chojin_42
Offline Send Email
Jul 1, 2007
5:22 pm
8161
... Good news - we changed this at the last minute in the Fedora packaging guidelines so that .cmx files should normally be installed, so as to allow...
Richard Jones
rwmjones
Offline Send Email
Jul 1, 2007
7:34 pm
8162
Thanks, it worked. Looks like extlib doesn't install the .cmx files. By the way, although extlib v1.5 was released in Feb 2006, it seems godi's version is...
yahoogroups@...
chojin_42
Offline Send Email
Jul 1, 2007
7:41 pm
8163
Can someone explain these behaviors (Hashtbl.hash)? # let v = Array.init 42 (fun i -> i);; val v : int array = [|0; 1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13;...
yahoogroups@...
chojin_42
Offline Send Email
Jul 1, 2007
11:41 pm
8164
Am Mon, 2 Jul 2007 01:40:53 +0200 ... not suprised. it's "only" a default hash function, so it may produce collisions. Very common. Try it with a self made...
micha
scheischeischei
Offline Send Email
Jul 1, 2007
11:52 pm
8165
... Well, it's more than "it may" here. I'm changing the value, swapping elements... and I always get the exact same value. As for implementing my own hash...
yahoogroups@...
chojin_42
Offline Send Email
Jul 2, 2007
12:16 am
8166
... Hash functions terminate after a constant amount of traversing. In this case, the built-in hash function is terminating before it reaches the part of your ...
Jon Harrop
harropjon
Offline Send Email
Jul 2, 2007
12:36 am
8167
... Thanks, But I still have a strange (although different one) behavior. My code looks like that: module Myhash = Hashtbl.Make(struct type t = C.t let hash = ...
yahoogroups@...
chojin_42
Offline Send Email
Jul 2, 2007
2:00 am
8168
... You probably want to put hash and equal into C and write: module Myhash = Hashtbl.Make(C) ... If Std.dump is a function from the ExtLib library, I...
Jon Harrop
harropjon
Offline Send Email
Jul 2, 2007
2:16 am
8169
Hello, ... Unfortunately undo (or backtracking) in my context does not necessarily mean moving back one step. I can (and most often will) move back several ...
Hugo Ferreira
hugotwo3
Offline Send Email
Jul 2, 2007
8:42 am
8170
... Yes, but it's just a test for the moment, I'm planning on doing that once I know wether or not it is really helping the performance (it's hard to predict...
yahoogroups@...
chojin_42
Offline Send Email
Jul 2, 2007
8:44 am
8171
William, ... As usual an excellent example of functional programming from you. Is this a "standard" functional data structure/technique? In respect to its...
Hugo Ferreira
hugotwo3
Offline Send Email
Jul 2, 2007
8:50 am
8172
How would I resolve this error under Cygwin? /usr/local/lib/ocaml/unix.cma: loaded Cannot load required shared library dllunix. Reason: dllunix.so: dynamic...
Joel Reymont
jreymont
Offline Send Email
Jul 2, 2007
9:27 am
8173
Hi ! *) type circular_list = Circular_list of (unit -> circular_list) let next cl = let Circular_list ret = cl () in ret let rec c2 = fun () -> Circular_list...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 2, 2007
9:40 am
8174
We have : next (next c2) == c2 but NOT next c2 == next c2 I forgot to report that : next (next c2) == next (next c2) All these seems weird......
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 2, 2007
12:54 pm
8175
Hello Fabrice, Le lun 02 jui 2007 09:43:08 CEST, ... This is more or less the same problem as in # 1::[] == 1::[];; - : bool = false Just replace :: by...
Virgile Prevosto
virgilepr
Offline Send Email
Jul 2, 2007
2:01 pm
8176
Hi Virgile ! I'm very happy of your understandable explanations because I remained completely stuck ! (second test) > > next (next c2) == c2 (* true *) ... ...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 2, 2007
4:18 pm
8177
Hi Virgile ! I'm very happy of your understandable explanations because I remained completely stuck ! (second test) > > next (next c2) == c2 (* true *) ... ...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 2, 2007
6:12 pm
8178
... [...thread snipped...] ... I'm very confused about what you want to achieve. Do you mean there are independent operations that can be backtracked ...
Frédéric van de...
fplancke2001
Offline Send Email
Jul 2, 2007
6:34 pm
8179
Hello, is there some documentation or code around for camomile-newbies? TIA, Oliver...
Oliver Bandel
oliver@...
Send Email
Jul 3, 2007
10:52 am
8180
Hello Fabrice, Le lun 02 jui 2007 16:21:05 CEST, ... In fact, the point is not that these nodes are bound to a variable in the source code, but that ocaml...
Virgile Prevosto
virgilepr
Offline Send Email
Jul 3, 2007
4:37 pm
8181
Hello Frédéric, ... No, I just mean that each epoch results in a change. I can backtrack to any epoch but I need not undo the changes all at once. I must...
Hugo Ferreira
hugotwo3
Offline Send Email
Jul 4, 2007
7:30 am
8182
Hello Virgile ! I'm grateful you wrote this code and solve the problem. I've experimented with === comparaison on iterated next : works fine. I didn't imagine...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Jul 4, 2007
9:11 am
8183
I haven't profiled in OCaml yet so forgive me the simple question: Does the OCaml profiler report consing and garbage collection statistics? Thanks, Joel -- ...
Joel Reymont
jreymont
Offline Send Email
Jul 4, 2007
9:40 am
8184
... It doesn't give you a breakdown of allocation by each function, as gprof gives a breakdown of time spent in each function, but you can get some simple ...
Jon Harrop
harropjon
Offline Send Email
Jul 4, 2007
10:10 am
Messages 8155 - 8184 of 11541   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