Folks, I have a rule like this in my .mly file: ... My idea is to say that there can be zero or more sections before the end of file. My parser doesn't seem to...
7390
LI Zheng
Zheng.Li@...
Mar 2, 2007 5:30 pm
Hi there, I'd like to announce the availability of an user-space implementation of STM library for OCaml. The library is still in its alpha stage, and...
7391
Richard Jones
rwmjones
Mar 3, 2007 10:11 am
... Does the current backend try and clever execution strategies (eg. speculatively executing transactions)? Do you plan to support something like MPI? Also, I...
7392
Zheng Li
li.zh_eng
Mar 3, 2007 2:48 pm
Hi, ... Not yet, there is just one thread back-end at this moment. More accurately, there is no _clever_ strategies here but just a plain one: command line....
7393
Zheng Li
Zheng.Li@...
Mar 3, 2007 10:46 pm
Hi, there I'd like to announce the availability of a patch to enhance the OCaml toplevel with addition features. It's available, in the forms of source patch,...
7394
overbored
Mar 5, 2007 8:24 am
how do i make a class obj containing a Set of obj? it's like the chicken and egg problem - if i first instantiate the module, obj is undefined, but if i first...
7395
Richard Jones
rwmjones
Mar 5, 2007 12:43 pm
... Do you need to use objects? A much more natural way to express this in functional languages is: type 'a thing = Thing of 'a | List of 'a thing list ...
7396
Jon Harrop
harropjon
Mar 5, 2007 1:21 pm
... You must use mutually recursive modules: # module rec A : sig type t = <get: ASet.t> val compare : t -> t -> int end = struct type t = <get: ASet.t> let...
7397
overbored
Mar 5, 2007 6:51 pm
... is ... for the ... the problem ... sure. i'm trying to write an (initially simple) object database. the rest of this paragraph is some background on this...
7398
overbored
Mar 5, 2007 7:56 pm
... obj ... instantiated ... - ... tool ... the ... tried ... my ... (basically ... to ... i ... paradigm ... static ... very ... tool ... provers, ... worried...
7399
Kai Kuehne
el.kaio
Mar 6, 2007 8:52 pm
I would register ocamlwiki.(com|org) and host it, but I'm just a ocaml-beginner so I can't really put any (usable) content in there. Greetings Kai...
7400
Francois Colonna
colonna_fran...
Mar 6, 2007 10:47 pm
... Good idea. You can always put your questions and their eventual answers or people may answer directly on the wiki. Francois Colonna...
7401
Martin Jambon
BioMim
Mar 7, 2007 8:05 pm
... For a long time I've been thinking that it would be nice to have forum for "OCaml software developers", i.e. something which is focused on the practical...
7402
Joel Reymont
jreymont
Mar 7, 2007 9:27 pm
... I second Google Groups, a much simpler and convenient interface than Yahoo. -- http://wagerlabs.com/...
7403
Jon Harrop
harropjon
Mar 7, 2007 10:25 pm
... Can you explain why parts of your solution must be imperative? ... You probably want to write picklers in OCaml too. ... That sounds like your proposed...
7404
Kai Kuehne
el.kaio
Mar 8, 2007 8:25 am
Ok. I think I will register ocamlwiki.org (or .net) for the wiki pages. Which wiki software do you prefer? Kai...
7405
overbored
Mar 8, 2007 5:48 pm
... the ... tried ... my ... (basically ... databases are very stateful, so it appears to me that an imperative approach is more fitting. fp is not (too)...
7406
Sasha Rush
sash_312000
Mar 8, 2007 7:19 pm
I'd really like to play around ocamldefun, but it seems to only work with ocaml 3.06. Has anyone had luck setting this up in more recent versions of ocaml?...
7407
Jon Harrop
harropjon
Mar 8, 2007 7:48 pm
... Isn't it just a preprocessor for OCaml code, so you can feed any OCaml code through it independent of the compiler? -- Dr Jon D Harrop, Flying Frog...
7408
Sasha Rush
sash_312000
Mar 8, 2007 8:02 pm
... I'm having trouble just compiling it. It requires claims it requires 3.06....
7409
Martin Jambon
BioMim
Mar 8, 2007 9:03 pm
... I don't have any clear preference. It also depends how much time you can afford. http://www.wikimatrix.org/ is a good starting point. From my experience: *...
7410
christian konrad
konrad@...
Mar 9, 2007 2:30 am
Hi list, I was wondering about the layout of my first larger ocaml project. I will need to write different modules and even different programs that make use of...
7411
Martin Jambon
BioMim
Mar 9, 2007 8:05 pm
Hello, There's a new OCaml mailing-list/forum for OCaml software developers: http://groups.google.com/group/ocaml-developer This forum is centered on practical...
7412
Fabrice Marchant
fabrice.marc...
Mar 10, 2007 10:43 am
Hi, "updatedb" utility stores file names in /var/cache/locate/locatedb on my Debian Linux. Please does any OCaml library provide easy access to these data ? ...
7413
Richard Jones
rwmjones
Mar 10, 2007 4:47 pm
Actually a much better guide is to look at the locatedb(5) man page. Rich. -- Richard Jones Red Hat...
7414
Richard Jones
rwmjones
Mar 10, 2007 4:47 pm
... It's unlikely. The best bet is to download the source code (in findutils) and try to reverse engineer the format from the source -- it uses a weird type...
7415
Grant Olson
olsongt@...
Mar 10, 2007 11:04 pm
If you're trying to do something simple that you could do in a shell, you can use one of the Unix process commands and "screen scrape" the results. -Grant ...
7416
overbored
Mar 11, 2007 3:57 am
I have the following code (HashSet is from http://wwwteor.mi.infn.it/ ~pernici/ocaml/ocaml.html): class obj2 = object (self) val mutable parents =...
7417
Zheng Li
li@...
Mar 11, 2007 9:33 am
... It says quite clearly, your "o" object contains functional value, so the Marshal flag "Closures" is required. You should write ... let o = new obj in let...
7418
Fabrice Marchant
fabrice.marc...
Mar 11, 2007 6:11 pm
Thanks a lot Rich and Grant ! ... I've apt-got the source and look at this code. It is short. locatedb man page explains how "front compression" of lists...