Welcome to my brief homepage for CS 313k. Announcements, homework hints, etc. may appear here, but your best resources are Dr. Moore's page and the discussion group.
The class website follows. Officer hours are posted on the class website. http://www.cs.utexas.edu/users/moore/classes/cs313k/index.html
To sign up for the discussion forum, visit http://groups.google.com/group/utexas-cs313k-spring2009/.
If you do not have a Google account, send an email to your TA, and they can send an email to you that will invite your UTCS account to join. You do not need to join to read the discussion forum, just to post to it. That being said, we hope most of you will post at some point, so it is probably in your interest to sign up now, rather than later.
It's important to note that I don't deserve credit for these slides. They were created by Dr. Moore. I just host them as a matter of convenience.
Lecture 07 ACL2 file Copy and paste the text of this file into your ACL2s buffer to use it.
Lecture 08 ACL2 file Copy and paste the text of this file into your ACL2s buffer to use it.
Diagram from Lecture 21 Slides
Lecture 27, Correction and Final Info
(defun ordp (x)
(if (endp x)
t
(if (endp (cdr x))
t
(and (lexorder (car x) (car (cdr x)))
(ordp (cdr x))))))
(defun isort (x)
(if (endp x)
nil
(insert (car x) (isort (cdr x)))))