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 9569 - 9598 of 11541   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9569
I have made changes to my source from what I have learnt from your emails as well as replies from Richard Jones. I have also replaced my Str-functions with...
Johann Spies
jspies@...
Send Email
Apr 1, 2008
8:11 am
9570
Hello, I get an error when I try to use LablTk. My configuration: - Windows XP - OCaml 3.10, native port Visual C - TclTk 8.5.1.0 (same problem with 8.4...
Alain Coste
alain_coste
Offline Send Email
Apr 1, 2008
8:50 am
9571
Hi list ! I'm fresh new to Ocaml, and have some practical issues with the language. First, I was wondering if someone knows of a way to look into cmi or cma ...
cedric cellier
rixed
Offline Send Email
Apr 1, 2008
12:27 pm
9572
... ocamlbrowser will give you at least some of what you want. Depending on where the .cm* files in question are, you can use: ocamlbrowser -I...
Hezekiah M. Carty
hezekiah44
Offline Send Email
Apr 1, 2008
12:39 pm
9573
The problem appears to be with the variable M.gcc, which is defined in the module Machdep. The compiler thinks it has type bool, but you are using it here with...
Christopher L Conway
postalchris
Offline Send Email
Apr 1, 2008
1:14 pm
9574
Thank you for all the quick replies ! If I had suspected there was already something that close to what I wanted I would have googled it :)...
cedric cellier
rixed
Offline Send Email
Apr 1, 2008
1:19 pm
9575
On Tue, 1 Apr 2008 08:39:02 -0400, Hezekiah M. Carty wrote ... There's also cmigrep <http://homepage.mac.com/letaris/> though if I remember correctly, it has a...
William D. Neumann
scoey13
Offline Send Email
Apr 1, 2008
1:29 pm
9576
On Tue, 1 Apr 2008 10:10:59 +0200, Johann Spies wrote ... Have you done any profiling with ocamlprof or gprof/shark/etc.? Where is the code spending its time? ...
William D. Neumann
scoey13
Offline Send Email
Apr 1, 2008
1:33 pm
9577
Dear all, I just tried to write a object wrapper for the primitive list. Inside the class t, as I assume there should be a map method: method map :('a -> 'b)...
Conglun Yao
yaoconglun@...
Send Email
Apr 1, 2008
2:06 pm
9578
On Tue, 1 Apr 2008 15:06:38 +0100, Conglun Yao wrote ... I suggest you look at the OCaml manual. Section 3.11 for this specific question...
William D. Neumann
scoey13
Offline Send Email
Apr 1, 2008
2:18 pm
9579
... I did not do any profiling. I have never used it in the past. Maybe I will try and learn how to use when I have some time at hands. Regards Johann -- ...
Johann Spies
jspies@...
Send Email
Apr 1, 2008
2:30 pm
9580
... Profiling OCaml is very easy. Just compile with -p, then run and collect profiling results using gprof: $ ocamlopt -p foo.ml -o foo $ ./foo $ gprof foo...
Jon Harrop
harropjon
Offline Send Email
Apr 1, 2008
2:48 pm
9581
On Tue, 1 Apr 2008 15:32:56 +0100, Jon Harrop wrote ... Unless you're on OS X. In which case, gprof doesn't work (or it didn't in 3.09, I never did check with...
William D. Neumann
scoey13
Offline Send Email
Apr 1, 2008
3:04 pm
9582
... In Debian and Fedora there is a program which is installed called 'ocamlobjinfo' which does what you want. This program comes from the main OCaml...
Richard Jones
rwmjones
Offline Send Email
Apr 1, 2008
10:51 pm
9583
Thanks, William. It is of help, but still can't help me work around the problem. The type inference for the 'map' method is much more restrictive than the ...
Conglun Yao
yaoconglun@...
Send Email
Apr 2, 2008
12:40 am
9584
Hello all , I am writing this function to extract an element from the array which is contained in the Hashtbl.However , since I am using for loops , the return...
breedaditi
Offline Send Email
Apr 2, 2008
1:27 am
9585
Hi, AB-- First let me say that I'm just returning to OCaml after an extended absence, but I may be of some assistance. ... So why are you using for loops? ...
Matt Gushee
mcgushee
Offline Send Email
Apr 2, 2008
6:10 am
9586
Thanks a loooooooot Chris,, that think helped and i am now able to install Ginseng,, a tool basd on OCAML on solaris machines.. Thaks again rgds Siddharth ... ...
siddharth_munot
Offline Send Email
Apr 2, 2008
10:25 am
9587
On Wed, 02 Apr 2008 01:01:32 -0000, breedaditi wrote ... OK, there's a lot to go over here. I'll just place my notes in the code as comments: let rec get_col...
William D. Neumann
scoey13
Offline Send Email
Apr 2, 2008
3:03 pm
9588
... Thanks Jon! I did that. The top lines show what I have expected: the Scanf and PrintF functions dominate. That is called for each line in the files. %...
Johann Spies
jspies@...
Send Email
Apr 3, 2008
6:52 am
9589
... OCaml-CSV, which as I said you should be using instead of attempting to parse CSV files yourself, uses an imperative state machine so it should be...
Richard Jones
rwmjones
Offline Send Email
Apr 3, 2008
8:41 am
9590
Hi, While doing my little camlp4 (3.10) practice, I had the following questions: (1) Is there a simple approach to add some 'open' directive at the beginning...
Conglun Yao
yaoconglun@...
Send Email
Apr 4, 2008
1:04 am
9591
... I know about OCaml-CSV and have used it in another program. In this case, however, I am only interested in the second field on each line. So I thought...
Johann Spies
jspies@...
Send Email
Apr 4, 2008
7:18 am
9592
Hi ! Not an OCaml specific question, however I'm trying to feed properly the 'doc' field for 'Arg.parse'. Unix command : man man says : bold text type...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Apr 6, 2008
2:51 am
9593
I am trying to use the csv-library, but I am wasting my time to get the typing acceptable to the compiler. I am not making any progress. The following...
Johann Spies
jspies@...
Send Email
Apr 7, 2008
11:17 am
9594
Hello, It seems that the open directive doesn't play the same role when I use the top-level ocaml and the batch compiler ocamlc: With top-level, I can: -...
alain_coste
Offline Send Email
Apr 7, 2008
12:26 pm
9595
On Mon, 07 Apr 2008 12:24:42 -0000, alain_coste wrote ... No. That shouldn't be happening. For example: ######### m.ml ########## let x = 1 ...
William D. Neumann
scoey13
Offline Send Email
Apr 7, 2008
1:38 pm
9596
... Thank you for your answer. I tried your example, and got the results I was describing in my first post, not your results. This is a copy of my files, to be...
alain_coste
Offline Send Email
Apr 7, 2008
3:46 pm
9597
... Thank you for your answer. I tried your example, and got the results I was describing in my first post, not your results. This is a copy of my files, to be...
alain_coste
Offline Send Email
Apr 7, 2008
3:53 pm
9598
On Mon, 07 Apr 2008 15:34:44 -0000, alain_coste wrote ... OK, here is your problem. When you have a source file myModule.ml, and you compile it with ocamlc or...
William D. Neumann
scoey13
Offline Send Email
Apr 7, 2008
4:28 pm
Messages 9569 - 9598 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