0
votes
1answer
41 views
Hashtable indexed on several fields
Hello SO,
I'm currently programming an OCaml module defining a type corresponding to a CPU register. The interface of this module is the following :
(*
* Defines a type which re …
4
votes
2answers
100 views
When choosing a functional programming language for use with LLVM, what are the trade-offs?
Let's assume for the moment that C++ is not a functional programming language. If you want to write a compiler using LLVM for the back-end, and you want to use a functional progra …
4
votes
4answers
102 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 abl …
1
vote
3answers
84 views
Linked List Ocaml
How would i create a linked list to hold my data in Ocaml? Im trying to make a singly linked list, however im having trouble with the syntax. I just want to make a module to simply …
-4
votes
2answers
138 views
I need finishing my ocaml assignment. [closed]
Hey,
Can someone help me with this assignment? I'm on question 3d.
The questions are posted here. Thanks and this is what I have so far:
type vector = {x:float;y:float};;
let vec …
0
votes
1answer
60 views
OCaml modules and performance
Some functions are really easy to implement in OCaml (for example, map from a list) but you may use the map of the OCaml library: List.map
However, we can wonder which code will b …
0
votes
2answers
50 views
Ocaml Syntax Error
What's wrong with this code? I can't figure it out:
let parent (rules : grammar) (symbol1 : string) (symbol2 : string) : (SymbolSet.t) =
try
SymbolSet.singleton (getParent …
5
votes
1answer
64 views
When do I need to use a Bigarray and why?
The documentation on the Bigarray module is somewhat vague. It states that the purpose of arrays in that module is to hold "large arrays", but it doesn't really define what it mea …
1
vote
2answers
59 views
OCaml question:How to construct a formated string in pythonic way…
All of these start from a simple idea: How to write python-style formatted string in ocaml.
pythoners could init a string as:
str = "this var: %s" % this_var
str2 = "this: %s; th …
0
votes
1answer
59 views
What is the difference between these three fscanf calls in OCaml?
I wrote a short bit of code to simply skip num_lines lines in an input file (printing the lines out for debugging purposes. Here's two things I tried that didn't work:
for i = 0 …
1
vote
2answers
32 views
Optional argument cannot be erased?
I wanted to have a tail-recursive version of List.map, so I wrote my own. Here it is:
let rec list_map f l ?(accum=[])=
match l with
head :: tail -> list_map f tail ~a …
5
votes
5answers
427 views
Why is this OCaml program faster than my C program?
I wrote a basic Hippity Hop program in C, Python, and OCaml. Granted, this is probably not a very good benchmark of these three languages. But the results I got were something li …
1
vote
3answers
61 views
Ocaml Syntax Error
I'm using an implementation of lazy lists where the type can be either Nil or Cons (value, thunk), where thunk is a function from unit to the rest of the list.
I'm trying to write …
2
votes
1answer
52 views
How do I optimize these ocaml functions for dynamic interval scheduling?
I have a program that solves the weighted interval scheduling problem using dynamic programming (and believe it or not, it isn't for homework). I've profiled it, and I seem to be …
1
vote
3answers
92 views
Mutable Data in OCaml
I've created a mutable data structure in OCaml, however when I go to access it, it gives a weird error,
Here is my code
type vector = {a:float;b:float};;
type vec_store = {mutab …
