I've read somewhere that the current machine model is not quite fit for functional programming. So what is the limitations of the current machine model? Has a more suitable machine model been developed?
            Asked
            
        
        
            Active
            
        
            Viewed 1,108 times
        
    2 Answers
10
            Landin's SECD machine was one of the first designed to evaluate lambda calculus expressions. Ager et al. cover other abstract and virtual machines designed to do same in their paper "A Functional Correspondence between Evaluators and Abstract Machines".
 
    
    
        outis
        
- 75,655
- 22
- 151
- 221
0
            
            
        Yes, it was developed. Here's an article on Lisp Machine.
 
    
    
        Paul Rubel
        
- 26,632
- 7
- 60
- 80
 
    
    
        Boris Pavlović
        
- 63,078
- 28
- 122
- 148
- 
                    Lisp machines were optimized to run Lisp programs, but weren't machine models. Furthermore, from what I understand, they were still sequential. A suitable machine model for (pure) functional programming shouldn't be sequential. – outis Oct 19 '10 at 15:26
