OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.
0
votes
1answer
8 views
What happens underneath append function?
I got an implementation for append function in Ocaml, but it seems confused to me
let rec append = function
| [] -> fun y -> y
| h :: t -> fun y -> h :: (append t y)
What is the purpose ...
4
votes
3answers
73 views
Pattern matching functions in Ocaml
Can everyone explain to me this piece of code ?
let safe_division n = function
| 0 -> failwith "divide by 0"
| m -> n / m
When I excute safeDiv 3 0 , what is the m and n in this case ?
In ...
0
votes
1answer
37 views
wodi64: ocamlopt issues an error
I installed wodi64 on windows 7. When I try to compile a simple hello world program with:
ocamlopt -o hello hello.ml
I get an error:
File "hello.ml", line 1:
Error: Corrupted compilation unit ...
0
votes
3answers
50 views
How to include other source files using the #use directive in OCaml?
I'm a newbie with OCaml and I'd like to put some of the code into another file, say foo.ml, just as one would do in C++ or Python. But that part of code itself does not form a module.
I've included ...
1
vote
2answers
62 views
huffman coding for a text file
This is only part of my huffman tree generated using ocaml. The tree is represented as (char*int list) list:
[(' ', [0]); ('e', [1; 0]); ('t', [1; 1; 0]); ('a', [1; 1; 1; 0]);
('o', [1; 1; 1; 1; ...
0
votes
1answer
67 views
How to used Cons operator?
Basically the function will take one parameter as a character, number and check whether it is inside the List or not ?
let rec (member: a -> List a -> Bool) x =
| [] -> False
| Cons y ys ...
2
votes
2answers
93 views
What libraries should I use for better OCaml Threading?
I have asked a related question before Why OCaml's threading is considered as `not enough`?
No matter how "bad" ocaml's threading is, I notice some libraries say they can do real threading.
For ...
1
vote
0answers
150 views
F# much slower than Ocaml for handling complex keys like int*int*int in data structures
I have converted an Ocaml program into F#, and overall performance is the same as Ocaml.
However, in order to get to this point, I had try replace exceptions by Option values.
The program works a ...
0
votes
4answers
90 views
Is there a single working OCaml IDE?
I have downloaded multiple OCaml IDE's / plugins and NONE of them work. I have no clue if I have a directory problem or if something else is at fault. I can access the OCaml console through cygwin ...
-5
votes
0answers
89 views
The right step to begin: Scala vs OCaml [closed]
This question could seem stupid, 'couse i haven't so much experience in functional programming.
I was wondering which is the best language between OCaml and Scala.
I already done something in OCaml, ...
0
votes
1answer
24 views
Eclipse OCaml ODT plugin
I am trying to get the ODT plugin (OCaml plugin) to work in eclipse but no part of its functionality is currently working. I have downloaded the plugin and have set the correct path to my OCaml ...
1
vote
1answer
21 views
How to use -thread compiler flag with ocamlbuild?
I am using Jane Street's async_core by adding package(async_core) in _tags.
When I use ocamlbuild -use-ocamlfind -I src test/test_airport.native, it gives me the following error:
camlfind ...
0
votes
1answer
36 views
How can I declare a module (actually a Set.Make) in mli file?
I have airport.mli and airport.ml.
In airport.ml, I have
module AirportSet = Set.Make(struct type t = airport let compare = compare end);;
This is no problem.
I then have a function
val ...
-1
votes
1answer
40 views
What library should I use to load a http url and get the html string out of it in OCaml? [closed]
My purpose is fairly simple.
I have a url. It is a web page. I want to download it as a string. The string will be the html content, in UTF-8 encoding.
What library should I use?
1
vote
1answer
39 views
Using OCaml syntax extension in Camlp4 with ocamlbuild
I am having an issue with using the deriving-ocsigen syntax extension in my camlp4 parser. My parser is called pa_debug.ml
Here's the tags file:
<pa_debug.ml>: pp(camlp4orf.opt), ...
1
vote
1answer
44 views
How to use ocamlbuild with OPAM in ocaml?
I wrote two libraries (Bson.ml and Mongo.ml) in ocaml.
I wish to enable it for opam.
In the instruction of opam, it says it needs make build and make install.
I am always using ocamlbuild and ...
0
votes
2answers
76 views
Ocaml Tree simple functions
I created a tree
type 'a tree = {
mutable cont: 'a;
mutable left: 'a bin_tree;
mutable right: 'a bin_tree
}
and 'a bin_tree =
Empty
| Node of 'a tree;;
and I'm ...
1
vote
2answers
72 views
OCaml: new_line equivalent before 3.11
I'm trying to compile Libra toolkit on a machine running Ubuntu Hardy with OCaml 3.10, I can't upgrade the OS nor update OCaml, and I don't know anything about OCaml. There is only one line that gives ...
2
votes
2answers
48 views
Set function for 2-dimensional array in OCaml
I am writing basic functions for 2 dimensional array. There are two ways to write "set" function. The first one consists in making a copy of the matrix and then modifying it:
let copy_matrix (m: 'a ...
4
votes
2answers
98 views
How to properly debug OCaml code?
Can I know how an experienced OCaml developer debugs his code?
What I am doing is just using Printf.printf. It is too troublesome as I have to comment them all out when I need a clean output.
How ...
0
votes
3answers
52 views
Reversing string in ocaml
I have this function for reversing strings in ocaml however it says that I have my types wrong. I am unsure as to why or what I can do :(
Any tips on debugging would also be greatly appreciated!
...
2
votes
1answer
45 views
How to generate doc for OCaml based on module signatures?
I have a.ml like this:
module type ASig =
sig
val do_something : unit -> int;;
end ;;
module A:ASig =
struct
let do_something () = 1;;
let do_secrectly () = 2;;
end;;
So ...
0
votes
2answers
68 views
Syntax error in ocaml
Why does the following code has a syntax error? I did not find out why.
let rec revStr stringa k e =
if k = e then ""
else (string_of_char stringa.[e])^
(revStr stringa (e-1) k);;
string ...
0
votes
1answer
46 views
Ocaml lexer / parser rules
I wrote a program in ocaml that given an infix expression like 1 + 2, outputs the prefix notation : + 1 2
My problem is I don't find a way to make a rules like : all value, operator and bracket ...
0
votes
1answer
60 views
Understanding the semantics behind the code
I have an OCaml code, and I have a hard time to formalize the function mi_pol into Coq because I am not understand clearly what exactly this code working, for example at the
aux (vec_add add const ...
0
votes
3answers
126 views
OCaml standard committee?
I am doing a presentation on OCaml, I want to put if there is a standard comittee or not. I searched the internet far and wide and I couldn't get an answer for that, so I am asking for help here.
1
vote
1answer
44 views
Recursive object: works one way, but not the other
Below are two examples, they are very simplified, and in this simplified form have no practical meaning, but it would help me to understand how things work using these two:
let test x = object (self)
...
15
votes
1answer
289 views
How are functors in Haskell and OCaml similar?
I've been toying around in a Haskell for the past year or so and I'm actually starting to 'get' it, up until Monads, Lenses, Type Families, ... the lot.
I'm about to leave this comfort zone a ...
0
votes
1answer
40 views
Ocamlfind installed my own lib but still `Unbound module` when using my lib
My lib has two files: bson.ml and bson.mli.
I also have another test file which use let doc = Bson.make ();; etc to access the library and it is fine without any problem.
I also successfully build ...
1
vote
2answers
121 views
Why OCaml's threading is considered as `not enough`?
It seems many people are saying OCaml does not have a good capacity for concurrency and it is also not good for web server applications.
I am currently learning ocaml's manual. It seems that OCaml ...
0
votes
1answer
63 views
I don't agree with this type inference
I'm trying to write an OCaml evaluator in OCaml. Basically I need to imitate OCaml's typechecker. I have the following code, which should return a type but the compiler complains of type mismatch.
...
1
vote
1answer
50 views
ocaml - array of record with mutable field
I'm new to OCaml and i'm trying to understand the concept of mutable record field.
I'd like to create an array of records and that record contains a boolean mutable field. So i did something like:
...
0
votes
2answers
57 views
OCaml performance according to matching order
In OCaml, is there any relation between the order in a pattern-matching and performance?
For instance, if I declare a type:
type t = A | B | C
and then perform some pattern-matching as follows:
...
0
votes
2answers
47 views
Ocaml unbound module
I'm learning Ocaml language but i have a problem with my modules when i want to compile them.
So, I have a module with the name Door and an other one with the name Case. Into each one, i have a type ...
4
votes
2answers
42 views
Are match cases guaranteed to be tested by declaration order?
I have these two functions:
let print_length = function
| [] -> Printf.printf "The list is empty"
| xs -> Printf.printf "The list has %d elements" (List.length xs)
let print_length = ...
2
votes
3answers
81 views
OCaml + LablGTK2: Multi-Line Text Box
I am trying to figure out how to instantiate a multi-line text box inside a graphical widget. LablGTK2 appears to be quite limited in terms of documentation and the API is scarce for the things that ...
2
votes
1answer
95 views
How to get the number of cores on a machine with OCaml?
I'm parallelizing some work in my OCaml program (with parmap) but I would prefer not to hard code the number of cores into my application. Is there a way to get the number of cores at runtime? I would ...
0
votes
1answer
38 views
OCaml-Wodi Part 2: Compiling using what was installed
I am trying to compile a very small vignette to see how lablgtk2 works.
(* file: base.ml *)
let main () =
let window = GWindow.window () in
window#show ();
GMain.Main.main ()
let _ = main ()
...
-1
votes
1answer
63 views
How to nicely print Buffer in OCaml?
I have a Buffer.
Question 1
How can I print out all byte inside one by one?
Question 2
How can I control the format of the printing?
For example, if I have a buffer like 33 33 33 33 33 33 14 40 ...
0
votes
1answer
58 views
How to convert float to string in Ocaml and store in a vairable
All i want is store a float as a string to a varible, I used following code:
let float_number = 0.00005 in
let str_number = string_of_float float_number in
Printf.printf "%s" str_number;;
After ...
0
votes
1answer
71 views
How to convert float to bytes in little-endian format in OCaml?
How can I convert a float to bytes in little-endian format?
like
5.05 -> \x33\x33\x33\x33\x33\x33\x14\x40
1
vote
3answers
82 views
How do I define an int64 in OCaml?
let i = 32 will give me a int32.
What if I want to define a int64?
1
vote
3answers
57 views
Expression matching Ocaml
My question is simple: how do I translate this C code :
if (x == y + 1)
// some code
else if (x == y - 1)
// some code
else if (x == y + 2)
....
Basically I was thinking of using pattern ...
2
votes
3answers
72 views
How to shorten this OCaml code?
I am just wondering how to shorten these code as I suspect it is too redundant
let get ename doc =
try Some (StringMap.find ename doc) with Not_found -> None;;
let get_double ename doc =
...
4
votes
1answer
152 views
Modulo operation in C#, C and OCaml
I wanted to confirm that the modulo operation was an expensive operation so I tested this piece of code that checks if a given number is even:
bool is_even(int n) {
return (n & 1) == 0;
}
...
4
votes
3answers
70 views
How do I use Camomile for UTF8 strings in ocaml?
I have downloaded Camomile and installed it and I am good to go for using it.
The question is how should I use it?
in ocaml, for default string, i just do let s = "a string";;
but what with ...
0
votes
3answers
59 views
How can I write a library in OCaml?
I am writing a bson encoder/decoder library in ocaml.
I have the source file now (actually just one file).
My question is that how should I make it as a library, such as ocaml-batteries-included, ...
2
votes
1answer
53 views
How to manage compilation well in OCaml?
I am learning more complex compilations in OCaml.
first I haven't been a C programmer and I really don't know what is make, etc. I am using Mac OS X terminal and i am also a Java programmer.
I find ...
4
votes
1answer
68 views
Bitwise operations in OCaml
What is the most idiomatic way to write bit-twiddling code in
OCaml? I know about the very cool Bitstring library, but
while this would be a great way to parse binary data in some protocol,
it doesn't ...
4
votes
1answer
30 views
OCaml Error involving lists
I'm still fairly new to OCaml, and would like some assistance on optimizing code.
I'm trying to multiply each element of a given list by the list's last element.
Here's a snippet of my code:
(* ...

