OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.
0
votes
2answers
68 views
print string buffer from file contents
I want to print the contents of a file. I tried to use a string buffer:
let ch = open_in "myfile.txt" in
let buf = Buffer.create 1024 in
(try Buffer.add_channel buf ch max_int with _ -> ());
...
3
votes
1answer
56 views
Defunctorizer for OCaml
In the past, Julien Signoles programmed ocamldefun, a program that took OCaml source code with functors and obtained an equivalent program without functors. This is useful for optimization, analysis ...
3
votes
2answers
43 views
OCAML how to find the next element of the variant
I have -> type week = MON | TUE | WED...... I want to create the function tomorrow which return the next day! For example , if I call "tomorrow MON", the function will return TUE.
2
votes
2answers
130 views
DFS and BFS for Graph in a **pure** functional way in OCaml
I am using Map to implement pure functional DFS and BFS for graph.
here is my code:
module IntMap = Map.Make(struct type t = int let compare = compare end);;
module IntSet = Set.Make(struct type t = ...
0
votes
1answer
23 views
ocamltop like 'trace' directive in ocamldebug
Is there a ocamltop's trace directive equivalent in ocamldebug ?
I need to use ocamldebug because my project has a few dozens of files and loading them into ocamltop hard(load order matters etc.). ...
6
votes
1answer
69 views
__ in Ocaml extracted from Coq
Ocaml code extracted from Coq includes (in some cases) a type __ and a function __ defined as follows:
type __ = Obj.t
let __ = let rec f _ = Obj.repr f in Obj.repr f
The documentation says that in ...
12
votes
2answers
183 views
η-expansion in a pure functional language
In OCaml, it is legal to have in .mli:
val f : 'a -> 'a
val g : 'a -> 'a
and .ml:
let f x = x
let g = f
Yet in F#, this is rejected:
eta_expand.ml(2,5): error FS0034: Module 'Eta_expand' ...
1
vote
1answer
33 views
stop reading file when marker is reached
I have the following code, just the basics of what i'm trying to do:
let ic = open_in "file.txt" in
try
while true do
let line = input_line ic in
print_endline line
done
with End_of_file ...
0
votes
1answer
38 views
Access at type under module
i explain u my problem
I have an module like this :
a.ml
module A = struct
type t = int * int
end
a.mli
module A :sig
type t = int * int
end
main.ml
let test = A.t(8, 9)
How can i solved ...
3
votes
2answers
55 views
Series of let definitions
I'm a beginner in OCaml, and i have a problem with series of let, like:
let x = myFun y in
let z = myFun x in
...
But, between the lets, i use Hashtbl.iter and other functions that returns unit. If ...
3
votes
1answer
54 views
How to use Map / define a type which actually is a Map in OCaml?
I am going to practicing using Map in Ocaml.
I found that the usage of Map is quite different from List, Array, etc.
I understand it is applying functor which I haven't learnt yet. but it is fine.
...
0
votes
1answer
68 views
Strange error in my implementation of in-place graph BFS in OCaml
I am implementing in-place graph BFS in OCaml.
here is my code:
type graph = {s : int list array;num_v:int;mutable num_e : int};;
let bfs u g p =
let marker = Array.make g.num_v false
in
let ...
0
votes
2answers
66 views
How to find minimum of a tuples list
I have to find a minimum of a tuples list but I only want to return the minimum of snd element of the tuples, not the entire tuple. Unfortunately i'm having the following error in the following code ...
6
votes
1answer
65 views
Unable to deconstruct product type after simplifying in OCaml
I have this simple code in OCaml:
type int_pair = int * int;;
type a = A of int_pair;;
let extract (A x) = x;;
Testing my extract function, it appears to work:
# extract (A (1,2));;
- : int_pair = ...
3
votes
2answers
159 views
Cygwin & OCaml: OPAM + Batteries
I extensively use Cygwin on a Windows 8 environment (I do not want to go ahead and boot/load Linux directly on the machine). I use the OCamlIDE plug-in for Eclipse and have experienced relatively no ...
1
vote
1answer
85 views
OCaml: Dynamic Arrays?
I've been trying to figure out how to resize an already initialized array in OCaml. However, it seems that while you can write a function that will create a brand new array with the elements of the ...
-1
votes
2answers
75 views
Ocaml List element multiplication
let rec intmult =
fun (aList ,al) ->
if(List.tl aList == []) then
((List.hd aList) * al)
else
List.hd aList * al :: intmult (List.tl aList , al);;
Why it is Wrong ?
3
votes
1answer
80 views
Duplicate values - Ocaml
How do you delete repeated values (i.e. duplicates) from a queue in Ocaml?
For example, suppose this is a queue (although it is presented in the form of a list):
[1; 1; 2; 3; 4; 7; 7; 8; 8; 8]
...
23
votes
5answers
715 views
What's the easiest way to build an F# compiler than runs on the JVM and generates Java bytecode?
The current F# Compiler is written in F#, is open source and runs on .Net and Mono, allowing it to execute on many platforms including Windows, Mac and Linux. F#'s Code Quotations mechanism has been ...
3
votes
1answer
64 views
Printing OCaml AST as OCaml Code
I have this piece of code that contains a camlp4 quotation.
let f_name = "my_func"
<:str_item< value $lid:f_name$ a = a * 2 >>
After running this through camlp4of, it produces this:
...
1
vote
1answer
80 views
Polymorphic recursion in OCaml: return values
Continuing my series of questions regarding type-level arithmetic, I stumbled across another problem: return types of polymorphic recursive functions.
This is the code:
module Nat : sig
type z = Z
...
2
votes
1answer
131 views
Type-level arithmetics in OCaml
Ok, more type hackery failure. :) :P
In my week-long pursuit of getting rid of (runtime) assert(n > 0) and instead checking it statically, I've come up with this module:
module Nat : sig
type ...
4
votes
1answer
74 views
Why can't pervasives.cmi be opened?
Installed Ocaml on my cygwin machine but simple compiles fail. Permissions are fine as you can see by the interaction below. OCAMLLIB is right; What is wrong?
$ cat t.ml
print_string "hi";
$ ...
3
votes
2answers
91 views
Will it be efficient if I create graph datastructure/algorithms using list in OCaml?
I begin to write graph related data structure and algorithms in OCaml now.
I am willing to try to write them in a functional way in OCaml, i.e., avoiding using array, mutable type, etc.
But if I ...
4
votes
1answer
126 views
Dependent types in OCaml
There's a lot of information about dependent types in Haskell and Scala. For OCaml, not so much. Is anyone skilled enough to provide a coding example on how to achieve this in OCaml (if it's possible ...
9
votes
1answer
227 views
Impredicative polymorphism in F#
OCaml's Hindley-Milner type system does not allow for impredicative polymorphism (à la System-F), except through a somewhat recent extension for record types. The same applies to F#.
It however is ...
4
votes
1answer
65 views
OCaml: Mutable fields of records with multiple files
I'm working with multiple files, and i have a problem with one mutable field.
In file1.ml, i declared:
type mytype = {
mutable numbers : int list;
}
So, in file2.ml, i have elements of type ...
0
votes
1answer
69 views
Stack automatically modifying when it shouldn't
I'm implementing a Prolog interpreter in OCaml. The problem I'm having is in the main function. I'm essentially trying to store my interpreter stack within a function call, and modify a copy of this ...
1
vote
1answer
95 views
OCaml: How to add an element in a list without returns a list?
What's the best way to insert an element in a list without returns a list with the element? Because these operator below returns a list:
element :: lst
I want the unit return, like Hashtbl.add ...
7
votes
1answer
159 views
OCaml: Effective Path to GUI Programming?
I have seen a few threads that touch on GUI programming in OCaml but I don't feel they clearly lead to a clear-cut solution when a GUI interface is needed.
My question, to be more specific, is as ...
1
vote
1answer
76 views
Which parsec-like libraries for OCaml are recommended for actual use? [closed]
The Google tells me there are several parsec-like libraries for OCaml: Batteries' ParserCo, Planck, Mparser, PCL, and ocaml-parsec. My problem is knowing which one to choose. Can someone give me ...
3
votes
1answer
89 views
Rotate list in OCaml
I want to write a function rotate n l that returns a new list containing the same elements as l, "rotated" n times to the right. For example,
rotate 0 [1;2;3;4] should return [1;2;3;4]
rotate 1 ...
1
vote
3answers
104 views
find the next greatest number, using list in OCaml
Here is one interview question:
find the next greatest number that can be form by same digit of the given number ..
input: 4765, output: 5467
If using array, it is not that hard.
...
3
votes
1answer
143 views
Linear types in OCaml
Rust has a linear type system. Is there any (good) way to simulate this in OCaml? E.g., when using ocaml-lua, I want to make sure some functions are called only when Lua is in a specific state (table ...
1
vote
1answer
70 views
Are there built-in function for average and variance value in OCaml?
I find that it is convenient to use the function
mean() and var() for calculate average and variance value in R.
I am wondering are there similar built-in function in OCaml?
mean(x) = ...
0
votes
1answer
54 views
use first-class module in OCaml
module type Arity =
sig
val arity : nat (* in my real code it has another type *)
end
module S =
functor (A : Arity) -> struct
let check = ...
end
I would like to use the function check ...
1
vote
2answers
72 views
Can I do `type 'a entry = string * 'a * 'a entry;;` in OCaml?
It seems I can't.
I wanna understand why I can't.
It is sure that I can do type 'a entry = Empty | Value of string * 'a * 'a entry;;, so if I want to recursively define a type, I only can go the ...
0
votes
1answer
77 views
Could not start ocamlbrowser on Windows
Problem: ocamlbrowser could not be started on Windows 8.
When I was installing ocaml on windows, it complained that the Tcl package could not be downloaded. I downloaded ActiveState ActiveTcl8.5.13 ...
-2
votes
1answer
36 views
New to OCaml finding index of element in a list
Problem solved. Issue was I forgot to use let statements when "changing" the immutable variables.
12
votes
2answers
190 views
What's the difference (if any) between Standard ML's module system and OCaml module system?
My question is if there is any difference between Standard ML's module system and OCaml module system? Has OCaml all the support of functors , ascriptions etc... that SML has?
Thanks...
3
votes
1answer
75 views
How was `val hash : 'a -> int` was implemented in OCaml?
In OCaml, Hashtbl can hash any thing to an int
Hashtbl.hash x associates a nonnegative integer to any value of any type. It is guaranteed that if x = y or Pervasives.compare x y = 0, then hash x = ...
2
votes
0answers
73 views
Extract functor in Coq to Ocaml using Extraction mechanism of Coq
I have a function PolyInterpretation (http://color.inria.fr/doc/CoLoR.PolyInt.APolyInt.html)
Definition PolyInterpretation := forall f : Sig, poly (arity f).
and a module signature ...
2
votes
1answer
47 views
Switch environment in OPAM
Is this possible to have several development environments, which share the same compiler?
Actually, I want to use 4.00.1+short-types compiler with different set of installed packages, and the ...
1
vote
2answers
56 views
Ocaml: why these types?
Hi could someone please explain why the types are as outlined below? I understand that they would have to be int because x+y+z but the number of arguments (ie ->) seems arbitrary to me.
let f x y ...
5
votes
3answers
109 views
When does the relaxed value restriction kick in in OCaml?
Can someone give a concise description of when the relaxed value restriction kicks in? I've had trouble finding a concise and clear description of the rules. There's Garrigue's paper:
...
8
votes
1answer
216 views
MonadFix in strict language
I'm working on camlp4 extension for haskell-like do notation in Ocaml, and trying to figure out how GHC compiles recursive do-bindings (enabled with -XDoRec).
I wonder if it possible for monadic ...
3
votes
2answers
81 views
Nested pattern matching in Ocaml
I want to write a function in Ocaml that given a list of quadruples and a quadruple (x,y,z,f), returns a list of that contains the tuples (x',y',z',g) such that x = x' or y=y' or z = z' (these are ...
5
votes
1answer
199 views
How to convert numbers among hex, oct, decimal and binary in OCaml?
What is the general way to convert numbers among hex, oct and binary in OCaml?
For example, how to convert hex 4294967276 (FFFFFFFC) to decimal number?
Thanks!
Nick
5
votes
3answers
192 views
Which is the current setup to use OCaml in Vim?
I never used Vi or Vim, but it seems that it is the best option to edit OCaml files.
Unfortunately I am lost with so many things to care about: ocaml-vi-addon, vi-scripts, otags etc.
I broke my ...
2
votes
2answers
108 views
How to install camlp4 pre-processor in Cygwin / Windows?
I'm trying to build OPAM within Cygwin in Windows 8. Here is the error information during the configure stage:
configure: error: You must install the Camlp4 pre-processor. On some
operating ...




