OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.
0
votes
1answer
43 views
Automize a set of tests one by one in makefile
I have a project coded in OCaml, launched by a makefile. A part of makefile is as follows:
TESTS = t1 t2 t3 t4 t5 t6 t7 t8 t9 t10
$(TESTS): % : tests/%.ev $(CMX_DOMAIN) analyze
...
-1
votes
1answer
68 views
OCaml: Adapting recursive function
i've lost all my day in this problem. So, i have a recursive function like that:
let rec rewriteTree tree =
rewriteElement tree c;
List.iter rewriteTree tree.subtree in
rewriteTree ...
1
vote
1answer
28 views
referencing a type constructor in ocamldoc
I'm getting ocamldoc warnings:
Warning: Element MyModule.VariantName not found
when using {!MyModule.VariantName} in doc comments.
The ocamldoc doc says
In this chapter, we use the word ...
0
votes
1answer
41 views
overgeneralized curried fns
module MapHelpers (Ord : Map.OrderedType) = struct
include Map.Make (Ord)
let add_all a b = fold add a b
end
works but the seemingly equivalent
module MapHelpers (Ord : Map.OrderedType) = ...
11
votes
1answer
271 views
Type systems of functional object-oriented languages
I would like to know how exactly modern typed functional object-oriented languages, such as Scala and OCaml, combine parametric polymorphism, subtyping and other their features.
Are they based on ...
2
votes
1answer
54 views
Socket onread, onready, onclose event handler function in Ocaml
I am developing a protocol using TCP/IP socket in Ocaml and I am interested implementing the event driven approach. Basically, I want to make event handling functions that invokes whenever socket ...
0
votes
1answer
58 views
Are there optimal sizes for an Hashtbl in OCaml?
Say I need to store 20 keys/values, would it be more efficient to use a power of 2, e.g. 32? I read a paper where the authors used a size of 251 (for an unknown number of keys/values), is this just a ...
0
votes
1answer
35 views
Function returns String result of external command
According to this post, there is a code that returns list string * Unix.processStatus.
Collecting the output of an external command using OCaml
But how do you rewrite this code to return a String ...
4
votes
1answer
55 views
Typing in ocaml methods
I was playing with method redefinition, and I found this silly example :
class a =
object
method get (x : a) = x
end
class b =
object
inherit a
method get (x : b) = x
end
I'm clearly ...
3
votes
1answer
81 views
Difference between module and package Ocaml
I'm basically trying to follow this stackoverflow answer located in this post:
What is the best module for HttpRequest in OCaml
and I'm running in to problems. When I am trying to run a single file ...
1
vote
1answer
67 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:
...
8
votes
1answer
87 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:
...
1
vote
2answers
63 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
...
1
vote
1answer
35 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
90 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 ...
2
votes
1answer
74 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
91 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
113 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
52 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 ...
2
votes
2answers
80 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 ...
2
votes
1answer
91 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; ...
1
vote
1answer
85 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
133 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 ...
2
votes
1answer
225 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
5answers
126 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 ...
-1
votes
1answer
34 views
Eclipse OCaml ODT plugin [closed]
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
40 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 ...
1
vote
2answers
43 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
44 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
70 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
66 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
104 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
78 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
70 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
108 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
64 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
47 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
69 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
51 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
66 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
133 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)
...
21
votes
1answer
369 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
56 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
143 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
55 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
61 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
64 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 = ...


