// A world where there is 6 facts in the goal, and there is 6 independent actions.
// This should make a state space with 6! (720) states.

#facts
()

#operator
//(op <name> <precond-list> <pos-effect-list> <neg-effect-list>)

//Move action
(
(op op1
	()
	(a)
	())
	
(op op2
	()
	(b)
	())

(op op3
	()
	(c)
	())

(op op4
	()
	(d)
	())


(op op5
	()
	(e)
	())


(op op6
	()
	(f)
	())
)

#goal
( a b c d e f )