OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.
1
vote
1answer
94 views
How should I sort 100 Billion items in OCaml using only immutable things?
ok, let's say we have 100 billion items that need to be sorted.
Our memory is big enough for these items.
Can we still use List.sort (Merge sort) to sort them?
My concerns have two parts:
Will ...
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"
...
6
votes
3answers
80 views
Identifying hashtable as a userdefined type in OCaml
I want to be able to define a type (say my_type) which can identify hashtables with strings as keys and mapped to integer values.
So, I tried
# type my_type = (string, int) Hashtbl.t;;
But, when I ...
1
vote
2answers
74 views
How to change all the elements of a list that are equal?
How can I replace all elements of a list which are equal to c to t in OCaml?
I have tried List.filter without success:
List.fold_right (fun c -> t) (List.filter c myLst) []
Does the List module ...
-1
votes
1answer
79 views
Pattern matching in OCaml
I have an OCaml list of the type (string*int) list.
I have to traverse through the list and check for the int value. If for all the elements in my list, the property int>=0 holds, then the list is ...
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, ...
1
vote
4answers
97 views
OCaml recursive function to apply a function n times
I want to create a function of type int -> ('a -> 'a) -> 'a -> 'a in OCaml that takes an int n (non-neg) and a function f 'a -> 'a and an argument a of type 'a. f should be called on a n times.
I've ...
0
votes
1answer
63 views
Defining a function with a function as an argument
I am currently trying to define a function of type ('a -> 'a) -> 'a -> 'a which takes a function of type 'a -> 'a and an argument of type 'a and calls the function twice on the argument. I'm ...
9
votes
1answer
206 views
Structural typing implementation of OCaml, Scala, and Go
While researching about structural typing I found the following post describing how interfaces in Go are translated to method lookup tables at runtime. The process described in the post seems vastly ...
2
votes
2answers
53 views
Can't understand OCaml trie type declaration
I am trying to understand how people write trie in OCaml. There is an example I found online:
It defines a map:
module CharMap = Map.Make(Char)
Then it defines the type of trie:
(* count of ...
1
vote
1answer
52 views
Extend module with type alias
I'm trying to work with the ocaml-inotify package. The relevant parts for this question can be defined as follows
module Inotify : sig
type wd
val int_of_wd : wd -> int
end = struct
type wd ...
1
vote
1answer
52 views
OCaml : cil.cmi is not a compiled interface error
I am compiling an instrumentation framework written in OCaml and am a novice in interpreting OCaml. I receive this error when running scons :
ocamlc.opt -dtypes -I instrumentor -I ocaml -I ...
0
votes
1answer
121 views
why “%d” is wrong in OCaml scanf format?
when I implement read_int function with ocaml (see below),
let read_int () = Scanf.bscanf Scanf.Scanning.stdin "%d" (fun x -> x)
if the format argument is %d(no space) , the compiler will ...
1
vote
1answer
123 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 ...
2
votes
1answer
73 views
OCaml: Throw away return value in imperative code
How do I successfully throw away the return value of a function and treat it as if it's returning unit (for side-effects, obviously). The obvious approach is to do this:
let foo = begin
...
6
votes
2answers
132 views
Why doesn't OCaml support record subtyping?
Reading "Types and programming languages", I got impressed by the object implementation using closures and record subtyping (chapter 18). Is there any particular reason OCaml doesn't support record ...
0
votes
1answer
81 views
tuple of tuple of tuple in ocaml
I have :
type 'a box =
| Item of ('a * 'a box)
| Empty
I need to create the function concat :
val concat : 'a box box -> 'a box
Concatenate a box of boxs. The elements of the argument are ...
2
votes
1answer
105 views
Installed ocamlfind (findlib), but never can find any extra package in Mac
Just got a new Mac, Mountain Lion and I wish to make all ocaml related stuff set up.
I used the following commands:
opam switch 4.00.1
opam install findlib
opam install batteries
All are ...
0
votes
3answers
95 views
stack_overflow in `list-based` quicksort in OCaml
Here is my implementation of list-based quicksort:
let partition pivot l =
let rec p left right = function
| [] -> (left, right)
| hd::tl ->
let c = compare pivot hd
in ...
2
votes
1answer
91 views
OCaml - compiling a program as a library
I have an OCaml program(with a main method - it generates an executable) and I want to use it as a library.
I was compiling my program like this: ocamlc -I someDir -g -unsafe lotsOfCmoFiles -o ...
3
votes
2answers
129 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, ...
4
votes
2answers
114 views
How can I implement interop between OCaml and C++?
I want to create a bridge between OCaml and C++. For instance I want to use some constructions written in OCaml in C++.
How can I achieve this? Are there any libraries, bindings for this?
6
votes
2answers
147 views
Decompiling OCaml byte code files
I am working on Ocaml and I've some binaries that I need to figure out. The closest I've come to is converting OCaml byte code to C compiled code using ocamlcc.
I don't wish to reverse engineer the ...
2
votes
1answer
86 views
How to turn on `exception stack trace` for OCaml `Toplevel`?
in Toplevel, how to turn on the stack trace for exceptions?
simple question, don't know how to ask more in details.
2
votes
3answers
127 views
Should I implement PriorityQueue (Heap) on List in OCaml?
I understand that priorityQueue is perfect on Array as its nature is in place.
Should I implement PriorityQueue (Heap) on List in OCaml?
If I do it on List, then I have to remove the in-place thing ...
4
votes
3answers
234 views
Is anyone use SML or OCaml for building real world GUI?
After looking at some OCaml graphics related projects it seems that no one using it for building GUI.
why ?
is there any modern alternatives to those outdated libraries ?
3
votes
1answer
51 views
Ocamlbuild override the default options
My installation of OCaml does not recognize #!, therefore camlp4o cannot be ran standalone. It must be invoked as "ocamlrun camlp4o".
I try to add a flag in the plugin. But the new flag is simply ...
1
vote
2answers
84 views
Do I need to call Random.self_init in OCaml?
First of all, I don't care about seed in this question.
My question is that whether I should call Random.self_init every time I want a fresh start in my function?
let shuffle l =
Random.self_init ...
1
vote
2answers
101 views
Any better way to implement quicksort in ocaml?
I implemented quicksort in OCaml. Here is the code:
let shuffle d =
let nd = List.map (fun c -> (Random.bits (), c)) d in
let sond = List.sort compare nd in
List.map snd sond;;
let ...
3
votes
2answers
126 views
How to shuffle list in O(n) in OCaml?
It is not hard to shuffle an array in O(n), with in place swapping,
How to do it for list in OCaml, with O(n)?
Requirement:
No array or in place usage
Consider this as an interview question
6
votes
1answer
121 views
OCaml: higher kinded polymorphism (abstracting over modules?)
Let's say I have a list of options:
let opts = [Some 1; None; Some 4]
I'd like to convert these into an option of list, such that:
If the list contains None, the result is None
Otherwise, the ...
0
votes
1answer
41 views
HTML labels with ocamlgraph
Is it possible to make a graph like this one with ocamlgraph? HTML labels have to be delimited with <> instead of "" and I don't see any mention of this functionality in the documentation.
2
votes
4answers
251 views
Parameter names of a function using a functional language such as F#
I have read a book called Clean code. One of the strongest messages that I took from the book is that the code must be readable. I do not understand why functional languages such as F# do not include ...
0
votes
1answer
164 views
Installing OCaml
I would like to start programming in OCaml. As I am a Windows user, I understand that it is preferred to do so using the OCaml plugin for Netbeans.
I have downloaded the aforementioned plugin from ...
3
votes
1answer
100 views
OCaml syntax for defining a helper function inside of another function?
I apologize if this is a silly question, but I'm a newbie to OCaml and I wasn't able to find examples of this anywhere. Could somebody give me a simple example of the Ocaml syntax for defining a ...
0
votes
2answers
135 views
Using continuation / CPS to implement tail-recursive MergeSort in OCaml
I am trying to implement a tail-recursive MergeSort in OCaml.
Since Mergesort naturally is not tail-recursive, so I am using CPS to implement it.
Also my implementation is inspired by Tail-recursive ...
2
votes
2answers
90 views
Why did I still get stackoverflow even if I used tail-recursion in OCaml?
I wrote a function which generates a list of randomized ints in OCaml.
let create_shuffled_int_list n =
Random.self_init;
let rec create n' acc =
if n' = 0 then acc
else
create ...
1
vote
1answer
33 views
Is it possible to break on a handled exception in OCaml?
Debugging an OCaml program that has an unhandled exception is fairly easy, because the program stops running and you can obtain a backtrace by running in ocamldebug or setting the OCAMLRUNPARAM ...
0
votes
1answer
67 views
Convert list into queue
How do I convert a list v1::v2::vn::[] into a queue?
This is all I've written until now:-
let fromList (l:'a list) : 'a queue =
let queue = create () in
let rec loop (z: 'a list) ...
1
vote
2answers
108 views
Why does OCaml have two sorting functions: List.sort and List.stable_sort?
here are the doc:
val sort : ('a -> 'a -> int) -> 'a list -> 'a list
Sort a list in increasing order according to a comparison function. The comparison function must return 0 if its ...
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 ...
4
votes
2answers
58 views
Does the OCaml compiler support true module aliasing?
I created a new module which is just a shorter alias for a module with a very long name:
module M = ModuleWithLongName
I'm in a situation where the size of the final executable matters. Is the ...
0
votes
1answer
62 views
Does sort function in OCaml use immutable or mutable data structure?
Does OCaml use mutable or immutable data structure in implementation of sort?
For many sort algorithms, we need to exchange data between positions in list or array or something.
I am just wondering, ...
1
vote
3answers
82 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
52 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
68 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
122 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 ...



