OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.

learn more… | top users | synonyms

60
votes
5answers
14k views

F# changes to OCaml

F# is derived from OCaml, but what major items are missing or added? Specifically I'm curious as to whether the resources available for learning OCaml are also useful to someone who wants to learn F#. ...
15
votes
4answers
1k views

Handling incremental Data Modeling Changes in Functional Programming

Most of the problems I have to solve in my job as a developer have to do with data modeling. For example in a OOP Web Application world I often have to change the data properties that are in a object ...
4
votes
3answers
2k views

Implementing a tail recursive version of quicksort-like function in F#/OCaML

Is it possible to implement a tail recursive version of the quick sort algorithm (via the continuation pattern)? And if it is, how would one implement it? Normal (not optimized) version: let rec ...
6
votes
6answers
605 views

Splitting a list of items into two lists of odd and even indexed items

I would like to make a function that accepts a list and returns two lists: the first contains every odd item, and the second contains every even item. For example, given [1;2;4;6;7;9], I would like ...
1
vote
1answer
274 views

Asking about return type, list and set data structure in OCaml

I have a function compute a list to boolean matrix where num_of_name: 'a list -> 'a -> int : return a position of element in a list. 1) I would like mat_of_dep_rel : 'a list -> bool array ...
88
votes
11answers
6k views

In Functional Programming, what is a functor?

I've come across the term 'Functor' a few times while reading various articles on functional programming, but the authors typically assume the reader already understands the term. Looking around on ...
38
votes
7answers
3k views

Why are functions in Ocaml/F# not recursive by default?

Why is it that functions in F# and Ocaml (and possibly other languages) are not by default recursive? In other words, why did the language designers decide it was a good idea to explicitly make you ...
11
votes
9answers
4k views

Ideas for Natural Language Processing project? [closed]

I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, collecting parse ...
19
votes
4answers
3k views

Does != have meaning in OCaml?

It seems to be an equivalency comparison for some types, but not strings. # 3 != 3;; - : bool = false # 3 != 2;; - : bool = true This is as expected. # "odp" = "odp";; - : bool = true # "odp" != ...
8
votes
3answers
783 views

Extending an existing type in OCaml

I've been doing some OCaml programming lately to learn the language and to get more acquainted with functional programming. Recently, I've started to think that I'd like to be able to extend an ...
4
votes
2answers
512 views

How to visualize/draw automata in ocaml?

I am doing composition of automata. So at the end of that, I want to draw the composed automata also. So are there any libraries for that in ocaml? or are there ocaml wrappers written for any graph ...
10
votes
2answers
897 views

Tail recursive function to find depth of a tree in Ocaml

I have a type tree defined as follows type 'a tree = Leaf of 'a | Node of 'a * 'a tree * 'a tree ;; I have a function to find the depth of the tree as follows let rec depth = function | Leaf ...
5
votes
1answer
230 views

Where to place a shared utility module in OCaml?

I have a file Tools.ml which contains some common utility functions I write myself. Under .../Code/ I have several folders which each contains a project. My question is where I should place this ...
8
votes
2answers
773 views

OCaml performance of exceptions

I've often read that exceptions are somewhat slow and should be avoided if performance is an issue (for instance, in Java, F#, etc). Does that apply to common OCaml functions such as Hashtbl.find, ...
1
vote
2answers
90 views

Simple non-optimal unionfind in OCaml

I wrote a OCaml program for union find algorithm. This algorithm I wrote is not optimal and is the simplest version. I put my OCaml code here because I am not sure whether this code is good enough or ...
29
votes
5answers
8k views

Whats really more performant? Haskell or OCaml [closed]

Okay folks, now it's getting serious... for me. I spent the last 18 months getting the grip of functional programming, starting with learning OCaml and for some weeks now Haskell. Now I want to take ...
10
votes
5answers
2k views

How do I do automatic data serialization of data objects?

One of the huge benefits in languages that have some sort of reflection/introspecition is that objects can be automatically constructed from a variety of sources. For example, in Java I can use the ...
27
votes
5answers
2k views

What is the benefit of purely functional data structure?

There are large number of texts on data structures, and libraries of data structures code. I understand that purely functional data structure is easier to reason about. However I have trouble to ...
20
votes
11answers
10k views

Know of an OCAML IDE?

Know of an OCAML/CAML IDE? Especially one that runs on Linux?
7
votes
3answers
241 views

What is the most efficient implementation of arrays with functional updates?

I need an array-like data structure with the fastest possible functional update. I've seen a few different implementation of flexible arrays that provide me with this property (Braun, Random Access ...
17
votes
1answer
610 views

OCaml internals: Exceptions

I'm curious to know how exceptions are dealt with in OCaml runtime to make them so lightweight. Do they use setjmp/longjmp or do they return a special value in each function, and propagate it? It ...
12
votes
4answers
2k views

Topological sort in OCaml

I'm trying to write topological sorting in ocaml, but I'm a beginner (in OCaml & graphs algorithms) and I can't do this by myself. It's easier for me to think about topological sorting in, for ...
7
votes
8answers
961 views

Stack performance in programming languages

Just for fun, I tried to compare the stack performance of a couple of programming languages calculating the Fibonacci series using the naive recursive algorithm. The code is mainly the same in all ...
16
votes
2answers
2k views

What is the state of OCaml's parallelization abilities?

I'm interested in using OCaml for a project, however I'm not sure about where its parallelization capabilities are anymore. Is there a message passing ability in OCaml? Is OCaml able to efficiently ...
15
votes
4answers
2k views

Higher-order type constructors and functors in Ocaml

Can the following polymorphic functions let id x = x;; let compose f g x = f (g x);; let rec fix f = f (fix f);; (*laziness aside*) be written for types/type constructors or modules/functors? I ...
7
votes
1answer
961 views

automata in ocaml

I am a bit new to OCaml. I want to implement product construction algorithm for automata in ocaml. I am confused how to represent automata in ocaml. Can someone help me?
6
votes
3answers
3k views

Parsing grammars using OCaml

I have a task to write a (toy) parser for a (toy) grammar using OCaml and not sure how to start (and proceed with) this problem. Here's a sample Awk grammar: type ('nonterm, 'term) symbol = N of ...
11
votes
2answers
5k views

tail recursion vs. forward recursion

Can someone give me the difference between these two kinds recursions and example? specifically in ocaml. Thanks
9
votes
4answers
477 views

See inferred types in complex OCaml code

I'm a OCaml newbie working with some pretty complex (at least for me) OCaml code I didn't write. It would help a lot to understand it if I could see the inferred types for some of the values, as I can ...
10
votes
2answers
135 views

Why there is a plus sign before this type?

I was browsing ocaml's standard library, and came across this code in the map.ml file. module type S = sig type key type +'a t val empty: 'a t' I'm wondering why there is type +'a t, ...
10
votes
3answers
3k views

Looking for OCaml IDE

I like F# but sometimes I need something light and cross-platform and without .NET for sure. I tried to use OCamL many times but seems like I just can't start it. Installed IDEA, added OCamL plugin ...
6
votes
4answers
420 views

Converting F# pipeline operators ( <|, >>, << ) to OCaml

I'm converting some F# code to OCaml and I see a lot of uses of this pipeline operator <|, for example: let printPeg expr = printfn "%s" <| pegToString expr The <| operator is ...
3
votes
3answers
534 views

type level integers in ocaml

Could anyone give me suggestions/advice on making type level integers in OCaml (3.12) supporting addition and subtraction operations on them? For example, if I have numbers represented like this: ...
8
votes
2answers
320 views

Two fields of two records have same label in OCaml

I have defined two record types: type name = { r0: int; r1: int; c0: int; c1: int; typ: dtype; uid: uid (* key *) } and func = { name: string; typ: dtype; params: var ...
6
votes
1answer
2k views

Functors in Ocaml

I am having a bit of a problem with a functor (and it's resultant type). Below, I have a Set functor that uses an Ordered type. I actually used the set.ml that comes with ocaml for some guidance, but ...
5
votes
1answer
228 views

N-ary tuples vs pairs

In Ocaml, tuples with different arities have different type and value constructors: # let a = (1, 2, 3);; val a : int * int * int = (1, 2, 3) # let b = (1, (2, 3));; val b : int * (int * int) = (1, ...
5
votes
3answers
332 views

Ocaml - Files and parsing

How to read contents from file in ocaml? Specifically how to parse them? Example : Suppose file contains (a,b,c);(b,c,d)| (a,b,c,d);(b,c,d,e)| then after reading this, I want two lists containing ...
3
votes
2answers
130 views

How should I organise my OCaml project?

I know this question is quite general and I even don't know how to better ask. I don't have much experiences in C and I just wish I can do similar thing in OCaml as in Java. For example, in Java, ...
3
votes
3answers
133 views

OPAM package not running

I've installed OPAM and run the initialization and updated my .bashrc code too. I then installed the ocamlfind package, which went successfully. But when I try #use "topfind";; I get the following ...
2
votes
1answer
69 views

File conversion in OCaml

I am an almost complete OCaml newbie, but have some functional programming knowledge. I am looking for a conceptual way of converting between two specification patterns. 1 2 "tau1" 1 3 "h1" 2 1 "h1" ...
2
votes
1answer
133 views

ocaml batteries compiling : Unbound module Toploop

**Build mode: shared ocamlbuild -no-links syntax.otarget byte.otarget src/batteries_help.cmo META shared.otarget Finished, 0 targets (0 cached) in 00:00:00. + ocamlfind ocamlc -c -g -annot ...
1
vote
1answer
124 views

How to implement a binary heap using list in OCaml?

I am implementing a binary heap using list in OCaml, just to sharpen my OCaml skills. I feel it very difficult using list and after struggling for 2 days, I have to come here for suggestions and ...
0
votes
1answer
70 views

Any simpler way to implement non-in-place selection sort in OCaml?

I implemented a non-in-place version of selection sort in OCaml. let sort compare_fun l = let rec find_min l' min_l origin_l = match l' with | [] -> if min_l = [] then ...
0
votes
2answers
69 views

Try to further understanding the interface/module of OCaml

I understand in OCaml there are concepts of interfaces and module. And I understand how to use them now. However, what I don't understand is how to fully utilise them. For example, in Java, ...
111
votes
5answers
4k views

Abusing the algebra of algebraic data types - why does this work?

The 'algebraic' expression for algebraic data types looks very suggestive to someone with a background in mathematics. Let me try to explain what I mean. Having defined the basic types Product • ...
32
votes
9answers
11k views

Machine learning in OCaml or Haskell?

I'm hoping to use either Haskell or OCaml on a new project because R is too slow. I need to be able to use support vectory machines, ideally separating out each execution to run in parallel. I want ...
46
votes
3answers
5k views

What are the differences between SML and Ocaml?

What sets the two ML dialects apart?
19
votes
7answers
3k views

Good projects to learn OCaml and F#

After learning the basic syntax, reading some non-trivial code is a fast way to learn a language. We can also learn how to design a library/software during reading others' code. I have following ...
51
votes
7answers
3k views

Why is writing a compiler in a functional language easier?

I've been thinking of this question very long, but really couldn't find the answer on Google as well a similar question on Stackoverflow. If there is a duplicate, I'm sorry for that. A lot of people ...
22
votes
8answers
2k views

Explaining pattern matching vs switch

I have been trying to explain the difference between switch statements and pattern matching(F#) to a couple of people but I haven't really been able to explain it well..most of the time they just look ...

1 2 3 4