Hi there,
I just recently started learning ACL2 and I have run into a problem.
I am trying to test if something is a list-of-lists-of-lists.
Example:
I know of true-listp, and true-list-listp. Is there a way I can test this without recursion?
I just recently started learning ACL2 and I have run into a problem.
I am trying to test if something is a list-of-lists-of-lists.
Example:
(((1 2 3) (1 2 3)) ((4 5 6) (4 5 6)))(The lists of 1 2 3 are grouped in a list, and the lists of 4 5 6 are group in a list, all contained within a list).
I know of true-listp, and true-list-listp. Is there a way I can test this without recursion?