The objective is to write a boolean expression simplifier. Usage (simplify '(and a b)) (simplify '(and a b T (or b NIL))) There are the literal values T (True)...
Just clarifying before I start off: The output should be the truth table for all "variables" in the input expression. right ? So, if the expression is: "(and a...
I realized that the problem may not have been phrased properly. You are expected to write two functions 1) (simplify expression) 2) (truth-table expression) ...
I realized that the problem may not have been phrased properly. You are expected to write two functions 1) (simplify expression) 2) (truth-table expression) ...
Sanjay, Sorry, I was stuck at work again - could not get back earlier. I think some more clarification is required. According ... should return: (or a c) The...
... Right! You can use eval to do that for you but then that would not be programming right? ;-) This program is not trivial but it is not that hard. Take Care...
Hello, I am working on my Senior Honors Project and I have hit a bit of a snag, I need to incorporate a LISP program with my Java Stamp but the Java Stamp...
For the past couple of hours I've been trying in vain to get the McCLIM Listener running. I've had to install a new version of CMUCL, get defsystem and try two...
... The main problem is that most of the free implementations of CL are hopelessly behind their commercial counterparts in terms of libraries, environments...
The same problem continues ... I received only one partial solution in May. I am hoping another 30 days would be good time for folks to work on it. Take Care ...
Hi, The Lisp community is growing rapidly. In order to support this growth, the ALU (Association of Lisp Users) is building a database of all people and...
Hi, Books on algorithms usually assume a random-access memory computer and an imperative programming language to go with it. I was wondering if there's a way...
... I'm not sure what you really mean by `a random-access memory computer'. Do you mean a stored-program computer, the so-called von Neumann architecture? ......
... You may be interested in the book "Purely Functional Data Structures" by Chris Okasaki. Here's a quote from the back cover: "This book describes data...
Could anyone suggest a good book on Franz Allegro GUI building or a online helper? I am having a bit of a hard time tackling it. Thanks ... Do you Yahoo!? ...
... Indeed. Just what I needed, thanks. Vikas G P __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! ...
This is pretty neat. These guys are trying to add some Lispy features to Java. There are two URLs for the article. http://www.openefp.com/programming/java/ ...
http://www.bloglines.com/public/tomelam I'm not sure this is the best way to share this information, but I am sharing there the Lisp-related blogs I am...
Hello Everybody, I am new to this group and also new to LISP. I am having problems in coding a program. The problem given to me is to write a set of LISP...
Hello Everybody, I am new to this group and also new to LISP. I am having problems in coding a program. The problem given to me is to write a set of LISP...
Hi, One possible solution is given below. (defconstant +article+ '(a an the)) (defconstant +adjective+ '(greyhound)) (defconstant +noun+ '(buses dog people...
This looks like a good, simple approach. I haven't completely checked this. My goodness, complete solutions to problems! Maybe I'll have to ask a good, tough...
Hi, ... Ok, so complete solutions to problems are probably not very illuminating, in any case. The problem given is a pattern matching problem, specifically...
... Anyhow, even as creator of this Yahoo group, I have no issue with this. I'll also freely admit I have a lot to learn about Lisp and AI. I was just joking...
... Check out the UNIX-Haters Manual, http://web.mit.edu/~simsong/www/ugh.pdf and Richard Gabriel's http://dreamsongs.com/WorseIsBetter.html You can get a...
I want to create a Lisp program that will write JavaScript code embedded in XML for another system to use (compile). The hardest and most important part of it...