blob: 2eede064c0effc5e475636261d88ad49fbec997c (
plain)
1
2
3
4
5
6
7
|
(define (problem EXAMPLE)
(:domain METRO)
(:objects A B C D - station
T - train
M - person)
(:INIT (connected A B) (connected B C) (connected C D) (at T A) (in M T))
(:goal (on M D)))
|