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

learn more… | top users | synonyms

1
vote
3answers
83 views

How can I keep polymorphism when using Array to implement Stack in OCaml?

I am implementing a stack in OCaml using array. I wish it to accept any types. Here is part of my implementation and my question is also about it. type 'a stack = {mutable storage : 'a array; ...
0
votes
0answers
16 views

ocaml lwt_log sections

I am digging my way with sections with Lwt_log. I tried something like let section = Lwt_log.Section.make "paxos" let k s= Lwt_log.debug ~section (me ^ ": " ^ s) in Printf.ksprintf k x But ...
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, ...
0
votes
0answers
53 views

typerex keywords complete

I've just installed the typerex 1.0, the auto-complete feature works fine for types and library functions but not ocaml keywords. I find a tuareg-mode file contaning ocaml keywords in ...
0
votes
2answers
89 views

How can I implement a stack with LinkedList style and in place modification?

In Java, it is easy to implement a linkedlist style of stack. We just create a inner class Item, it has two properties: value and next. Then we main always the first item. Then when push, we ...
0
votes
1answer
69 views

How to force value restriction in OCaml?

I wish to implement a stack with value restriction. What I want is that the pop and push are always talking about exactly the same type all the time. Here is my sig. module type MyStackSig = sig ...
4
votes
3answers
123 views

Are there other ways to deconstruct option types in OCaml?

OCaml's option type is really useful in cases where you have functions that might not return anything. But when I use this in many places, I find it cumbersome to handle the Some case and the None ...
2
votes
1answer
72 views

The logic of the ocaml compile process

I wrote a small project in OCaml. I have two folders: ./myUnionFind. inside there is a file myUnionFind.ml. ./percolation. inside there are two files: myPercolation.ml and percolation_stats.ml. ...
1
vote
1answer
77 views

Mutable Types in OCaml

I am writing a function that swaps the contents of two reference calls. let swap (x : a ref) (y :'a ref) : unit = where type 'a ref = {mutable contents : 'a} I do not know what approach to ...
0
votes
1answer
45 views

Ocaml Parsing a list

Hi guys I would like to parse "[a;b;c;d;e;f;g]" as "a::b::c::d::e::f::g::[]" In my part of my parser I have listOps: | combOps COLONCOLON listOps { Bin($1,Cons,$3) } | combOps SEMI listOps ...
2
votes
0answers
70 views

Why emacs Tuareg mode shows different color for functions in Ocaml?

Just want to know why Tuareg mode shows different colour for functions? for example, as shown below, function create_percolation and index_of show blue color and is_open is in brown color. Why??
2
votes
2answers
57 views

Why ocamlc says I mismatched {} while I don't?

I have written myPercolation.ml. open MyUnionFind module type MyPercolationSig = sig type percolation val create_percolation : int -> percolation val open_site : percolation -> int -> ...
0
votes
1answer
102 views

Can't load batteries using FindLib in Ocaml TopLevel

I successfully installed ocaml-batteries-included and findlib. I can do 'ocamlfind ocamlc -package batteries -c mycode.ml` without problems. Also, if I do ocamlfind list, I get $ ocamlfind list ...
0
votes
1answer
77 views

About None in Ocaml

I am a beginner to Ocaml. I am trying to write some code about normal order reduction, and is confused by some syntax. The following is some truncated code to isolate my error. type expr = | Var of ...
18
votes
4answers
597 views

What's the closest thing to Haskell's typeclasses in OCaml?

What are some ways that I can accomplish what Haskell's typeclasses do in OCaml? Basically, I want to write a polymorphic function without writing too much code. The typical way to do polymorphism is ...
4
votes
2answers
60 views

OCaml Invalid Argument(“equal:abstract value”)

It seems that I can't assign an abstract value to a ref and I'm not sure what to do. open Big_int let largest = ref zero_big_int;; let depth = ref zero_big_int;; let rec big i = (add_int_big_int i ...
4
votes
2answers
92 views

Which way of these two pattern matching is more preferred?

I'm just curious, these two functions would do the same thing. But which one should I use? let f a = match a with b -> a;; let f a = match a with b -> b;; Or it just ...
4
votes
2answers
119 views

Concatenate string to integer in Ocaml

I would like a working version of this: let x = "a" ^ 0;;
2
votes
1answer
50 views

Why does pattern with variable not match?

I'm writing a code that can find the median of a list, and I cannot use rec and should use List.fold_left/right. I wrote the following code, which should work. It finds the length of the list, if ...
1
vote
1answer
44 views

Ocamllex Syntactical issue

{ } rule translate = parse | "current_directory" { print_string (Sys.getcwd ()) } | _ as c { print_char c } | eof { exit 0 } { let main () = let lexbuf = Lexing.from_channel stdin in while true do ...
-1
votes
1answer
91 views

Tokenizer in Ocamllex [closed]

I have been able to write the code which will generate the tokenizer. How do I check if my tokenizer is working or not?
1
vote
2answers
82 views

About the complexity of Map.remove in OCaml

It seems Map.remove will return a new map structure, leaving the original map the same. How can the complexity still be O(lg n)?
-1
votes
2answers
86 views

ocaml define type and use it for calculation

have the following type value, and i want to do a calculation base on those type but i got a error saying that: This expression has type value but an expression was expected of type int So what ...
1
vote
1answer
272 views

ocaml eval function from type define in

HI I have the following define type and try to eval the function as example: let evn =[("z1",Int 0);("x",Int 1);("y",Int 2);("z",Int 3);("z1",Int 4)];; val evn : (string * Nano.value) list = [("z1", ...
1
vote
1answer
154 views

ocaml parser and lexer

Hi I have the 3 files nano.ml which is the type, and a paser and lexer file. I have no idea how to write the rules for parser, and i try to write the rules but it gives me erro saying that does not ...
1
vote
1answer
56 views

ocaml lcs without objects like Array

How can I find the longest common subsequence without using Arrays and only List folds in ocaml
1
vote
2answers
73 views

Strange module loading issue in OCaml

I have two files: myUnionFind.ml and myUnionFind_test.ml. Both files are in the same directory. myUnionFind.ml open Batteries module type MyUnionFindSig = sig type union_find val print_array ...
6
votes
3answers
295 views

Tail Recursive Levenshtein Distance

I implemented Levenshtein Distance in a pretty standard way in F# as an exercise let lastchar (s:string) = s.Substring(s.Length-1, 1) let lastchar_substring (s:string) len = s.Substring(len-1, 1) ...
1
vote
1answer
53 views

ocaml process ID

How ocaml can raise signal (to be handled via Lwt_unix.on_signal) on the current process that the ocaml is running inside?
2
votes
2answers
86 views

In OCaml, When to use Interface (mli) and when to use module?

OCaml provides mli for interface and a module system. My question is simple, how to choose from them?
6
votes
1answer
134 views

Is there a good “OCaml Browser” tool for Linux?

I'm using Emacs + Typerex for OCaml programming. I have tried OcaIDE before in Windows. It's not as nice as Typerex, but it does have a good feature: Ocaml Browser Is there anyway to have such a ...
1
vote
1answer
93 views

ocaml batteries installation

There seems to be conflicting information about batteries installation. I have tried several suggestions, but none have worked for me. I first tried ocamlfind batteries/ocaml but that gave this ...
0
votes
1answer
74 views

Ocaml syntax explanation please?

I'm new to Ocaml and I'm trying to figure out how this function works: let ccc c1 c2 c3 = fun (s1, s2, s3) n -> let (t1, r1) = (c1 s1 2) in if r1 = 0 then let (t2, r2) = (c2 ...
4
votes
4answers
110 views

int * int vs (int * int) in OCaml sum type

type foo = A of int * int | B of (int * int) What is the difference between int * int and (int * int) there? The only difference I see is in pattern matching: let test_foo = function | A (f, s) ...
-1
votes
1answer
112 views

OCaml find the mode of a list [closed]

So here is the question. Say I have a list [1;2;2;3;3;3] I want to find the mode of it, which is 3. There is one restriction about it : rec is prohibited, and List.fold_left or List.fold_right has ...
1
vote
1answer
78 views

OCaml non decreasing list without List.function

Update: I can't use any List.function stuff. I'm new to OCaml and I'm learning this course in which I'm supposed to calculate a list of non decreasing values from a list of values. So for e.g. I ...
1
vote
1answer
52 views

improving the efficiency of simple function

This is the signature of my "transform" method: let rec transform (f: -> 'a -> 'b) (l: 'a list): 'b list = begin match l with | [] -> [] | hd :: rest -> (f hd) :: (transform f rest) end ...
0
votes
1answer
60 views

Combining fold and filter

So I'm writing a combining function for fold that will make it perform filtering. let filter_combine (pred: 'a -> bool) : a' list -> 'a list -> 'a list = fun (x: 'a) (y: 'a list) -> x :: ...
0
votes
2answers
97 views

Writing a filter predicate: “expression has type int .. expected of type bool”

So I wrote a function "filter" that is applied to the given predicate to each element in the input list and checks whether it should be included in the output. let rec filer (pred: 'a -> bool) (l: ...
9
votes
2answers
371 views

Choosing between continuation passing style and memoization

While writing up examples for memoization and continuation passing style (CPS) functions in a functional language, I ended up using the Fibonacci example for both. However, Fibonacci doesn't really ...
2
votes
1answer
66 views

Build native executable with profile information using Ocamlbuild

How to build with enabled profile information using Ocamlbuild? It seems -p doesn't work there. Now, I use ocamlopt for this. For example, $ ocamlfind ocamlopt -c -p -thread -package core test.ml $ ...
12
votes
1answer
321 views

If SML.NET had functors why can't F#?

This question started out from My translating of "ML for the Working Programmer" (WorldCat) by L. C. PAULSON to F# which uses functors for the examples. Eventual desire to translate "Purely ...
2
votes
1answer
45 views

What's the easiest way to provide an optional dependency?

I have a little oasis based library I'm making and my code is dependent on sexplib in a totally non-essential way. Is there a way I can provide possible users of this library the choice on whether ...
2
votes
1answer
83 views

Function with multiple return types: is it possible?

I have the following bit of code, which I'd like to return either a boolean or a tuple. (The functions isvariable and dont_care both return booleans, fyi) let match_element (a, b) = if a = b then ...
0
votes
2answers
55 views

How can I use a type defined in another .ml file in OCaml?

Assume I have two .ml files: A.ml and B.ml. In A.ml, I have type my_type = {id_ary : int array; sz_ary : int array};; In B.ml, I have let test_my_type {id_ary;_} = id_ary.(0) <- 10;; ...
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 ...
1
vote
1answer
55 views

How to load a module inside an OCaml file?

I wish to use module Std inside my OCaml .ml file. I tried #load "Std", but the compiler complains. How can I load a module inside OCaml?
0
votes
1answer
85 views

Semicolon and nested if expressions in OCaml

Well, I have problems in using semicolon (single and double) and nested if else in OCaml. For example let union u p q = let rec unionfy id_ary i = if i < Array.length id_ary then begin ...
2
votes
1answer
70 views

How can I load a ml file in toplevel of OCaml, just like `use mine.sml` in SML/NJ?

In SML's repl, you can just type use whatever.sml and load all things inside that .sml into repl. How can I do that in OCaml?
3
votes
3answers
135 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 ...

1 3 4 5 6 7 33