Tagged Questions
1
vote
1answer
44 views
Recursive object: works one way, but not the other
Below are two examples, they are very simplified, and in this simplified form have no practical meaning, but it would help me to understand how things work using these two:
let test x = object (self)
...
0
votes
1answer
42 views
OCAML Recursive function not stopping
And thanks for your help. I'm currently working on an assigment, and I've been stuck with a faulty recursive call.
I have a simple CAML-Light function which is supposed to take a list and a size ...
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
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.
1
vote
1answer
69 views
Function to return a day n days ahead of given day
So I'm looking to build a function that takes an int and a day (of my day type below) and returns the day n days ahead of the given day.
I have type day defined as
type day = Sun | Mon | Tues | Wed ...
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 ...
0
votes
2answers
167 views
Memoization in OCaml?
It is possible to improve "raw" Fibonacci recursive procedure
Fib[n_] := If[n < 2, n, Fib[n - 1] + Fib[n - 2]]
with
Fib[n_] := Fib[n] = If[n < 2, n, Fib[n - 1] + Fib[n - 2]]
in Wolfram ...
-2
votes
3answers
106 views
Recursion optimization?
Why does Fibonacci recursive procedure works so long?
This is in OCaml:
let rec fib n = if n<2 then n else fib (n-1) + fib (n-2);;
This is in Mathematica:
Fib[n_] := If[n < 2, n, Fib[n - 1] ...
2
votes
1answer
247 views
OCaml - Add a new tuple, containing a list of tuples, to that list
I'm writing an interactive calculator in OCaml with some simple commands. Users should be able, among other things, to define their own simple functions (mathematical functions), for instance
let ...
2
votes
1answer
282 views
OCaml recursive function
I'm new in OCaml. I wrote this code to reduce algebraic expressions:
type expr =
| Int of int
| Float of float
| Add of expr*expr
| Sub of expr*expr
| Mult of expr*expr
| Div ...
2
votes
2answers
284 views
FIx data type in OCaml
How can the following data type from Haskell be expressed in OCaml or SML?
newtype Fix f = In (f (Fix f))
2
votes
2answers
414 views
Interleave of two lists via recursive function (Ocaml)
I am in front of quite a challenge here, and hope that you can provide a little help.
I have tried and searched a lot, but without success.
Here is the problem:
Two lists
List1 : [a1; a2; ...; ...
4
votes
2answers
58 views
Recursive List Creation Function. Errors in type
I have an Ocaml function that is giving me errors.
What I am trying to do:
Recursively create a List of random numbers (0-2) of size "limit".
Here's what I have:
let rec carDoorNumbers = fun limit ...
0
votes
3answers
282 views
OCaml function to evaluate arithmetic expressions
I’ve written part of a mathematical calculator program. I’ve finished the parser of the program,
so when a user types in a mathematical expression as a string, I already have a way to obtain
a ...
1
vote
2answers
304 views
Complexity of a recursive function with a loop
I have a recursive function working on a list, the function contains a loop where itself is called, and ends up with another function g. Its structure is similar as follows, to simplify the issue, we ...
0
votes
1answer
268 views
Explanation of OCaml code: explode a string, split a list
I am absolute OCaml beginner and have an assignment about more code. I have got the following code, but I don't know how it works. If someone can help me out, I appreciate it.
# let explode str = ...
3
votes
1answer
144 views
Functions that call each other in a module in OCaml
I have a question about ocaml, i'm a beginner :-)
Here is an example of what i'm trying to do : (I know this is non-sense but it's not my real code, it's just an example)
let func a b = a
let func2 ...
3
votes
1answer
80 views
how to define two types referring to each other in OCaml?
The code below will report Syntax error message:
type 'a edge =
|Empty
|End of 'a * 'a vertex * 'a vertex and
type 'a vertex =
|Empty
|Vertex of 'a * 'a edge list;;
How to define two ...
1
vote
2answers
505 views
return the nth element of a list in OCaml?
I am new to Ocaml, just want to make sure how to perform a simple function such as return the nth element of a list by using recursive function?
Prototype like get_nth (list, n) with int list * int ...
11
votes
1answer
839 views
Why does ocaml need both “let” and “let rec”? [duplicate]
Possible Duplicate:
Why are functions in Ocaml/F# not recursive by default?
OCaml uses let to define a new function, or let rec to define a function that is recursive. Why does it need both ...
1
vote
2answers
181 views
Creating own substing functions recursively in Ocaml
How can i write a substring function in ocaml without using any assignments lists and iterations, only recursions? i can only use string.length.
i tried so far is
let substring s s2 start stop=
...
3
votes
2answers
996 views
Keeping a count of the number of recursive calls in Ocaml
I'm new to Ocaml. The problem I'm having is keeping track of the number of recursive calls in a function.
For instance, I wrote a following function:
let rec someFunction n =
let digi = ...
2
votes
3answers
505 views
Define a static variable for a recursive function in OCaml
I have a recursive function fact, which can be called from either an expression inside it or an expression outside it.
I would like to associate fact with a variable v, such that each time fact is ...
4
votes
1answer
406 views
How to have 2 functions call each other in OCaml
I want to have 2 different recursive functions in OCaml, where each 1 could call the other one. It isn't working because the one that is declared 1st isn't able to call the one that is declared 2nd. ...
2
votes
1answer
2k views
reversing a list in OCaml using fold_left/right
UPDATE - Solution
Thanks to jacobm for his help, I came up with a solution.
// Folding Recursion
let reverse_list_3 theList =
List.fold_left (fun element recursive_call -> ...
1
vote
1answer
121 views
Ocaml, understand a function
I have some problems in understanding how this function works,
in particular I' don't understand the control flow of itregarding the last line.
Can someone explain me the steps it does, maybe with a ...
2
votes
1answer
128 views
A recursive function to discuss in Ocaml
I have defined a type and a function:
type element = ...
let merge (x0: element) (x1: element): element * bool = ...
The second part of the return of merge represents if x0 and x1 are merge-able. ...
2
votes
2answers
292 views
Ocaml returning a list from a recursive function
I want to go through an array and return a list of ints (the value of indexes) when a value in the array matches true.
The array is a boolean array of just true/false values.
let get_elements ...
4
votes
1answer
358 views
Ocaml - parameter type when checking for duplicates in a list
I've got a basic function which checks a list for duplicates and returns true if they are found, false otherwise.
# let rec check_dup l = match l with
[] -> false
| (h::t) ->
...
2
votes
1answer
279 views
Ocaml: calling recursive function again
So I have a recursive function that takes in 2 ints, and a out_channel and basically prints line(a,a+1). It should do this until value of a is equal to b. I.e if a = 1, b = 5
line(1,2)
line(2,3)
...
3
votes
4answers
953 views
Ocaml - Move last element of list to front
First off, I apologize if this is a confusing or backwards way to go about what I want to accomplish, but I'm new to "Ocaml style".
I want to take the last element of a list, and move it to the front ...
2
votes
2answers
202 views
Variant, Recursive Function and Type Inference
I'm very new at OCaml but worked all the past two days in order to get a good understanding of how to use it.
I've been doing a lot of thing lately but something is keeping me from moving forward.
...
1
vote
3answers
142 views
Recursive expression whose only base case is an exception [Context: Reading from files in OCaml]
Edit: Disregard this question! See comments below.
I want an OCaml expression which is passed a file (as an "in_channel"), then reads the file line by line, doing some processing, to the end, then ...
3
votes
1answer
499 views
Recursive types in OCaml?
Hi this is my first time posting on Stack Overflow and I've run into a problem while trying to construct a type in OCaml
I'm trying to construct a type tree that has nodes/leafs/etc. This is what I ...
2
votes
1answer
276 views
9
votes
2answers
394 views
Type inference with mutual recursion
I've been thinking about how type inference works in the following OCaml program:
let rec f x = (g x) + 5
and g x = f (x + 5);;
Granted, the program is quite useless (looping forever), but what ...
4
votes
1answer
271 views
Recursive Set in OCaml
how can I manage to define a Set in OCaml that can contains element of its type too?
To explain the problem I have a type declaration for a lot of data types like
type value =
Nil
| Int of int
| ...
5
votes
2answers
258 views
OCaml cross linking
how does referenced linking work in OCaml?
Example, let's assume I have 3 modules declared as
A.ml
B.ml
C.ml
of which
A needs B and C
B needs A
How should I proceed in compiling?
Since order ...
4
votes
4answers
1k views
Ocaml continuation passing style
I'm new to ocaml and tryin to write a continuation passing style function but quite confused what value i need to pass into additional argument on k
for example, I can write a recursive function that ...
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
2
votes
8answers
1k views
Stack overflow using recursive functions in OCaml
I have a little problem: I want to solve this problem with OCaml,
so I tried this ->
-> let rec somme x = if ( nor (bool_of_int (x mod 3)) (bool_of_int (x mod 5))) then x + (somme x-1) else (somme ...
1
vote
1answer
1k views
Ocaml - Iterative to Recursion
For an assignment, i have written the following code in recursion. It takes a list of a vector data type, and a vector and calcuates to closeness of the two vectors. This method works fine, but i dont ...
0
votes
3answers
2k views
Last occurence of element in a list in OCaml
Assuming l is a list and elem is an element, how can I return the last occurence of the element elem in the list l? Also return -1 if the element does not exisit in l. I don't quite understand how to ...
-1
votes
3answers
4k views
Appending an integer to a List in Ocaml [closed]
How can i implement this function?
let rec append l i =
(* For example, if l is a list [1;2] and i is an integer 3
append [1;2] 3 = [1;2;3]*)
;;
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 ...
2
votes
3answers
617 views
Recursive functions within OCaml objects
I am trying to figure out recursion for OCaml in the context of an object's method. I have tried the following code but can't seem to get it to compile.
class foo =
object (self)
method loopTest =
...
