Mutual recursion is a case in computer science where multiple problems that depend on each other form a cycle, like the chicken and egg problem.

learn more… | top users | synonyms

1
vote
2answers
89 views

what is a mutually recursive type?

If in ML, an example of a recursive datatype is: datatype llist = Nil | Node of int * llist What is a mutually recursive datatype and whats an example of it, in ML?
2
votes
1answer
132 views

ANTLR : Fixing Left Recursive and Mutually Left Recursive

This is part of a grammar I'm working on as to develop a parser tool which will be important in doing my research. It gives me an error under ANTLR IDE In eclipse saying paraction, action, cspaction ...
3
votes
2answers
145 views

How to have two functions that call each other C++

I have 2 functions like this that does obfuscation on if loop: void funcA(string str) { size_t f = str.find("if"); if(f!=string::npos) { funcB(str); //obfuscate if-loop ...
11
votes
1answer
209 views

Why doesn't Haskell support mutually recursive modules?

Haskell supports mutually recursive let-bindings, which is great. Haskell doesn't support mutually recursive modules, which is sometimes terrible. I know that GHC has its .hs-boot mechanism, but I ...
3
votes
3answers
256 views

Example demonstrating good use of mutual recursion

I would like to know if there is a non-artificial example, where mutual recursion is the most elegant solution to a problem and it cannot be easily reduced/inlined to a single recursive function. I ...
6
votes
2answers
227 views

How to speed up (or memoize) a series of mutually recursive functions

I have a program which produces a series of functions f and g which looks like the following: step (f,g) = (newF f g, newG f g) newF f g x = r (f x) (g x) newG f g x = s (f x) (g x) foo = iterate ...
1
vote
2answers
179 views

C++ mutual template dependency?

I'd like to have two structures which point to eachother. Specifically, I'd like to have the following: template<typename Key, typename Value> class MyStructure { public: typedef map<Key, ...
2
votes
2answers
170 views

Resolve circular C++ template dependency

Suppose I have: template<typename T> class A { typedef T t_type; void done_work(); }; template<typename T> class B { typedef T t_type; void do_work(){ // adds work to an ...
3
votes
3answers
190 views

defining mutually dependent variables

I need to define mutually-dependent vars. By this I mean that one var contains e.g. a vector with another var and vice versa. This is illustrated by the following code: (declare a b) (def a [1 b]) ...
4
votes
2answers
712 views

OCaml: Declaring a function before defining it

Is there a way to declare a function before defining it in OCaml? I'm using an OCaml interpreter. I have two functions: let myFunctionA = (* some stuff here..... *) myFunctionB (*some stuff *) ...
5
votes
1answer
335 views

F#: is mutual recursion between types and functions possible?

I can use the and keyword to set up mutually recursive function definitions. I can also use and for mutually recursive types, but what if there is a mutually recursive relationship between a type and ...
0
votes
3answers
106 views

Can anyone explain this output to me?

So I was playing around with some thought experiments where I imagined what would happen when two functions became mutually recursive. One such one was what if both functions could potentially fall ...
3
votes
3answers
255 views

Unable to understand a mutual recursion

I am reading Programming In Haskell, in the 8th chapter, the author gives an example of writing parsers. The full source is here: http://www.cs.nott.ac.uk/~gmh/Parsing.lhs I can't understand the ...
2
votes
1answer
270 views

Mutual Recursion Question

How do I change two functions that are Mutual Recursive to each other to make them into a linear recursion? Do I have to have both the methods in a single method?
5
votes
2answers
412 views

Fixed point combinator for mutually recursive functions?

Is there a fixed point combinator for creating tuples of mutually recursive functions? I.e. I'm looking for something like the Y-Combinator but which takes multiple "recursive"* functions, and will ...
7
votes
2answers
336 views

Why the requirement for signatures in mutually recursive modules in OCaml?

When using mutually recursive module definitions in OCaml, it's necessary to give signatures, even in the .ml file. This is an annoyance where I also want to expose a given interface from the .mli, as ...
0
votes
3answers
297 views

simple javascript function definition problem

function First () { setTimeout("Second()", 50) }; function Second () { //I'm very confident this conditional works fine if (document.getElementsByClassName("l")[0].href == ...
3
votes
1answer
230 views

Organise my mutual recursive types

Is it possible to have mutual recursive types ([<Struct>]) spread across different files? The types are directly under a namespace. My solution is to put them in one big file and use type ... ...
4
votes
4answers
215 views

Is it possible to define types that depend on each other and are defined in separated files?

I am trying to implement a library with extended parsing capabilities. I decided that I will use fsyacc because I knew it from the university. Unfortunately I encountered following problem. I ...
4
votes
2answers
135 views

How can I reorder these F# functions to make sense?

I thought I'd be getting along alright with F# since I'm decent at Haskell, but I feel like I'm being stumped by dead simple issues. I have some parsing code for a simple JSON parser, like this: let ...
6
votes
3answers
564 views

F#: Mutually recursive functions [duplicate]

Possible Duplicate: [F#] How to have two methods calling each other? Hello all, I Have a scenario where I have two functions that would benefit from being mutually recursive but I'm not ...
2
votes
3answers
472 views

Mutually recursive evaluator in Haskell

Update: I've added an answer that describes my final solution (hint: the single Expr data type wasn't sufficient). I'm writing an evaluator for a little expression language, but I'm stuck on the ...
1
vote
4answers
1k views

Mutually recursive classes

How do I implement mutually recursive classes in C++? Something like: /* * Recursion.h * */ #ifndef RECURSION_H_ #define RECURSION_H_ class Class1 { Class2* Class2_ptr; public: void ...
9
votes
3answers
268 views

Can discriminated unions refer to each other?

I'm building an expression tree using discriminated unions. The below code: type IntExpression = | TrueIsOne of BoolExpression type BoolExpression = | LessThan of IntExpression * ...
6
votes
3answers
444 views

Problem determining how to order F# types due to circular references

I have some types that extend a common type, and these are my models. I then have DAO types for each model type for CRUD operations. I now have a need for a function that will allow me to find an id ...
5
votes
3answers
460 views

What is the standard way to optimise mutual recursion in F#/Scala?

These languages do not support mutually recursive functions optimization 'natively', so I guess it must be trampoline or.. heh.. rewriting as a loop) Do I miss something? UPDATE: It seems that I did ...
4
votes
3answers
777 views

What is this kind of mutual “recursion” called?

My issue is with a certain style of code that very much resembles recursion, but isn't quite that. Recursion is, to quote Wikipedia, "a method of defining functions in which the function being defined ...
14
votes
3answers
1k views

F# forward type declarations

I stumbled across this problem in F#. Suppose, I want to declare two types that reference each other: type firstType = | T1 of secondType //................ type secondType = | T1 ...
3
votes
3answers
323 views

How does one resolve F# Type Reference Errors?

I've been through my books, and I've googled until I've ran out of search terms, yet I still can't find an example or answer to this problem: The following code does not compile because the type ...
12
votes
2answers
762 views

How to have two methods calling each other?

I'm a bit confused as to how to get two method to call each other (i.e., have A() call B() and B() call A()). It seems that F# only 'sees' the method after it's been encountered in code, so if it ...