Re: [Haskell-cafe] Program for displaying graph state in lambda interpreter?

2012-06-02 Thread Benjamin Redelings I
On 06/01/2012 05:07 PM, Sean Leather wrote: Hi Benjamin, On Fri, Jun 1, 2012 at 9:54 PM, Benjamin Redelings wrote: I have written an interpreter that operates on the lambda calculus augmented with letrec, constructors, case, primitive objects, and builtin operations. I'd like

Re: [Haskell-cafe] Program for displaying graph state in lambda interpreter?

2012-06-02 Thread Ertugrul Söylemez
Benjamin Redelings benjamin.redeli...@duke.edu wrote: However, it would be nice to know of any programs that are better suited for this. For example, if I could write * and draw arrows from the placeholders to the memory location being referenced, that would be easier to read. This is

[Haskell-cafe] Program for displaying graph state in lambda interpreter?

2012-06-01 Thread Benjamin Redelings
Hi, I have written an interpreter that operates on the lambda calculus augmented with letrec, constructors, case, primitive objects, and builtin operations. I'd like to display the internal state of the intepreter at various points so that I can, um, debug the programs that I've

Re: [Haskell-cafe] Program for displaying graph state in lambda interpreter?

2012-06-01 Thread Sean Leather
Hi Benjamin, On Fri, Jun 1, 2012 at 9:54 PM, Benjamin Redelings wrote: I have written an interpreter that operates on the lambda calculus augmented with letrec, constructors, case, primitive objects, and builtin operations. I'd like to display the internal state of the intepreter at