Wumpus World Question

Poivo <[email protected]> Wed, 16 Apr 2008 01:25:04 -0700 (PDT)
Newsgroups gmane.comp.ai.powerloom
Message-ID <[email protected]>
In a simple wumpus world rappresentation(Wumpus world is an N x N board game
with a number of wumpuses and treasures that are randomly placed in various
cells. Wumpuses emit smell and treasures glitter. Smell and glitter can be
sensed in the horizontal and vertical neighbors of the cell containing a
wumpus or a treasure. In this simple model pits aren't present.) how to
assert  "A cell containing a wumpus impiles all neighbors of that cell
smell"?
I already have defined these following relations:
(defconcept Cell (?c))
(defrelation Neighbors ((?c1 Cell) (?c2 Cell)))
(defconcept WumpusCell (?c))
(defconcept Smell (?c Cella) :<=> (exists ?c1 (and (WumpusCell ?c1)
(Neighbors ?c ?c1))))
-- 
View this message in context: http://www.nabble.com/Wumpus-World-Question-tp16718701p16718701.html
Sent from the PowerLoom mailing list archive at Nabble.com.