#| ******************************************************************************* PRODIGY Version 2.01 Copyright 1989 by Steven Minton, Craig Knoblock, Dan Kuokka and Jaime Carbonell The PRODIGY System was designed and built by Steven Minton, Craig Knoblock, Dan Kuokka and Jaime Carbonell. Additional contributors include Henrik Nordin, Yolanda Gil, Manuela Veloso, Robert Joseph, Santiago Rementeria, Alicia Perez, Ellen Riloff, Michael Miller, and Dan Kahn. The PRODIGY system is experimental software for research purposes only. This software is made available under the following conditions: 1) PRODIGY will only be used for internal, noncommercial research purposes. 2) The code will not be distributed to other sites without the explicit permission of the designers. PRODIGY is available by request. 3) Any bugs, bug fixes, or extensions will be forwarded to the designers. Send comments or requests to: prodigy@cs.cmu.edu or The PRODIGY PROJECT, School of Computer Science, Carnegie Mellon University, Pittsburgh, PA 15213. *******************************************************************************|# ;reject.lisp (setq *SCR-OP-REJECT-RULES* '((REJECT-UP (lhs (and (current-node ) (current-goal (pla )) (on-goal-stack (place

)) (candidate-op UP) (known (and (hnei ) (place

))))) (rhs (reject operator UP))) (REJECT-DOWN (lhs (and (current-node ) (current-goal (pla )) (on-goal-stack (place

)) (candidate-op DOWN) (known (and (hnei ) (place

))))) (rhs (reject operator DOWN))) (REJECT-RIGHT (lhs (and (current-node ) (current-goal (pla )) (on-goal-stack (place

)) (candidate-op RIGHT) (known (and (vnei ) (place

))))) (rhs (reject operator RIGHT))) (REJECT-LEFT (lhs (and (current-node ) (current-goal (pla )) (on-goal-stack (place

)) (candidate-op LEFT) (known (and (vnei ) (place

))))) (rhs (reject operator LEFT))) ;--------- from eight to six ------ (REJECT-UforSIX (lhs (and (current-node ) (current-goal (pla 2)) (candidate-op UP) (known (and (place 1 1 1) (place 2 1 2) (place 3 1 3))))) (rhs (reject operator UP))) ;-------------------------------------------------------------- (REJECT-for-8 (lhs (and (current-node ) (current-goal (place 2 1 2)) (candidate-op LEFT) (known (place 1 1 1)))) (rhs (reject operator LEFT))) (REJECT-for-8 (lhs (and (current-node ) (current-goal (pla 2 1)) (on-goal-stack (place 2 1 2)) (candidate-op LEFT) (known (place 1 1 1)))) (rhs (reject operator LEFT))) ))