;; Processing Unicode Files with ACL2 ;; Copyright (C) 2005-2006 by Jared Davis ;; ;; This program is free software; you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by the Free ;; Software Foundation; either version 2 of the License, or (at your option) ;; any later version. ;; ;; This program is distributed in the hope that it will be useful but WITHOUT ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for ;; more details. ;; ;; You should have received a copy of the GNU General Public License along with ;; this program; if not, write to the Free Software Foundation, Inc., 59 Temple ;; Place - Suite 330, Boston, MA 02111-1307, USA. (in-package "ACL2") (defund list-fix (x) (declare (xargs :guard t)) (if (consp x) (cons (car x) (list-fix (cdr x))) nil)) (defthm list-fix-when-not-consp (implies (not (consp x)) (equal (list-fix x) nil)) :hints(("Goal" :in-theory (enable list-fix)))) (defthm list-fix-of-cons (equal (list-fix (cons a x)) (cons a (list-fix x))) :hints(("Goal" :in-theory (enable list-fix)))) (defthm list-fix-when-len-zero (implies (equal (len x) 0) (equal (list-fix x) nil))) (defthm true-listp-of-list-fix (true-listp (list-fix x))) (defthm len-of-list-fix (equal (len (list-fix x)) (len x))) (defthm list-fix-when-true-listp (implies (true-listp x) (equal (list-fix x) x))) (defthm list-fix-under-iff (iff (list-fix x) (consp x)) :hints(("Goal" :induct (len x)))) (defthm consp-of-list-fix (equal (consp (list-fix x)) (consp x)) :hints(("Goal" :induct (len x))))