Created
June 30, 2012 12:39
-
-
Save trietptm/3023628 to your computer and use it in GitHub Desktop.
Prolog test case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
room(300,400,500). | |
object(monkey). | |
object(key). | |
object(cabinet). | |
object(box(b1,20)). | |
object(box(b2,40)). | |
at(loc(20,20,0),monkey). | |
at(loc(20,20,30),key). | |
at(loc(20,40,0),cabinet). | |
on(b2,floor). | |
at(loc(100,100,40),b1). | |
room(300,400,500). | |
object(monkey). | |
object(key). | |
object(cabinet). | |
object(box(b1,20)). | |
object(box(b2,40)). | |
at(loc(20,20,0),monkey). | |
at(loc(20,20,30),key). | |
at(loc(20,40,0),cabinet). | |
on(b2,floor). | |
at(loc(100,100,0),b1). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment