OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.
-1
votes
1answer
29 views
Add elements in 'a tree in Ocaml
So, here is my problem..
I need to write a function that will add elements in a tree and it is a binary tree, so it must be well organized. The problem is in how is my tree defined.
I have this tree:
...
4
votes
0answers
45 views
Calling OCaml-wrapped ZeroMQ code from signal handler
I've written some OCaml bindings for CZMQ based on the guide at http://www.linux-nantes.org/~fmonnier/ocaml/ocaml-wrapping-c.php, which seem to work pretty well. For example here's zstr_send:
...
0
votes
2answers
38 views
'opam install uri' failed
I'm trying to install the uri package for Opam but I keep running in to this error.
==== ERROR [while installing uri.1.3.8] ====
# opam-version 0.9.6 (latest-103-g955b7ca)
# os linux
...
0
votes
1answer
25 views
OCaml Debugger: Exception uncaught
I'm trying to use ocamldebug. My program makes a lot of things and then write in a file. It compile and works fine, but when i use the ocamldebug and reach the part that it will write the file, the ...
3
votes
2answers
66 views
Is there an infix function composition operator in OCaml?
Just a quick question. I'm wondering if there is a infix function composition operator in OCaml defined in the standard library (or in Jane Street's Core or in Batteries) like the (.) function in ...
0
votes
1answer
61 views
Is there a `flip` function in the OCaml standard library?
In Haskell, we have a flip function: flip f x y = f y x, which essentially takes a function and returns the same function except that the two arguments are swapped. I wonder if there is a counterpart ...
2
votes
2answers
71 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 ...
5
votes
3answers
96 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
41 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 ...
1
vote
2answers
63 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
1answer
70 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
73 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 ...
1
vote
2answers
106 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
166 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
100 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
105 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
22 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
42 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
45 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
45 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
85 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
73 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
49 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 ...
5
votes
2answers
100 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
47 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
61 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
128 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)
...
19
votes
1answer
312 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
41 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
123 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
51 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
49 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
84 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
85 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
73 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 =
...


