User Tools

Site Tools


public:t-622-arti-07-1:program_3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:t-622-arti-07-1:program_3 [2007/02/28 15:43] hannespublic:t-622-arti-07-1:program_3 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 1: Line 1:
  
 ====== Programming Project nr. 3: Planning ====== ====== Programming Project nr. 3: Planning ======
 +
 +
 +
  
  
Line 8: Line 11:
   * **Goal:** Use classic planning to make your hexapod brew a powerful elixir by bringing the right ingredients to a pot and adding them in the right order.   * **Goal:** Use classic planning to make your hexapod brew a powerful elixir by bringing the right ingredients to a pot and adding them in the right order.
   * **Approach:** You set up a planning problem, using a simple XML data file to describe the initial state, possible actions (with pre- and postconditions) and a goal state.  You solve the problem using a search-based problem solver in Java that reads your XML data.  Once a solution has been found, you test it by sending the action sequence to your hexapod and see it succeed with the brewing.   * **Approach:** You set up a planning problem, using a simple XML data file to describe the initial state, possible actions (with pre- and postconditions) and a goal state.  You solve the problem using a search-based problem solver in Java that reads your XML data.  Once a solution has been found, you test it by sending the action sequence to your hexapod and see it succeed with the brewing.
-  * **Materials:** You start with a simple problem solver in Java and a skeleton of the XML data files. +  * **Materials:** You start with a simple problem solver in Java and a skeleton of the XML data files. You can get the files needed {{public:t-622-arti-07-1:hexapod_planning_release.zip|here}}
-  * **Hand in:** Zip up your data files and any java source files that you modify and submit via MySchool.+  * **Hand in:** A short report detailing how you solved the harder problems and some run data( nodes looked at, plan make time, computer used). Zip up your data files and java source files and submit via MySchool.
   * **Deadline:** Hand in before 23:59 on Sunday the 11th of March!   * **Deadline:** Hand in before 23:59 on Sunday the 11th of March!
  
Line 15: Line 18:
  
 ==== Specifying Planning Problem in XML ==== ==== Specifying Planning Problem in XML ====
 +
 +Actions are specified thus:
 +
 +   <actions>
 +      <action name="pickUp">
 +         <parameters>
 +            <parameter name="obj" type="Ingredient" />
 +         </parameters>
 +         <preconditions>
 +            <condition>IsClose(obj)</condition>
 +         </preconditions>
 +         <postconditions>
 +            <add>
 +               <condition>
 +                  Holding(obj)
 +               </condition>
 +            </add>
 +            <delete>
 +               <condition>IsOnGround(obj)</condition>
 +            </delete>
 +         </postconditions>
 +      </action>
 +      <action name="putFirstIngredientInPot">
 +         <parameters>
 +            <parameter name="obj" type="Ingredient" />
 +            <parameter name="pot" type="Pot" />
 +         </parameters>
 +         <preconditions>
 +            <condition>IsClose(pot)</condition>
 +            <condition>Holding(obj)</condition>
 +            <condition>IsEmpty(pot)</condition>
 +         </preconditions>
 +         <postconditions>
 +            <delete>
 +               <condition>
 +                  Holding(obj)
 +               </condition>
 +               <condition>IsEmpty(pot)</condition>
 +            </delete>
 +            <add>
 +               <condition>InPot(obj)</condition>
 +               <condition>LastIngredientInPot(obj)</condition>
 +            </add>
 +         </postconditions>
 +      </action>
 +   </actions>
 +
 +
 +Each action has some parameters that are used when the action is applied. In order for the action to be applicable its preconditions must be held. When the action is applied it's postconditions are applied, which are put forth as a delete and add lists.
 +
 +So, in the first problem listed below we can't apply the pickUp action as it's precondition "IsClose(obj)" isn't held. So we would need a new action that can perform this.
  
 ==== The Java Problem Solver ==== ==== The Java Problem Solver ====
 +The classes are split up according to their roles:
 +
 +The Successor class finds all the successor states available from some state s.
 +
 +The GoalTest class tests a SearchNode to see if it has reached the goal.
 +
 +The SearchNode class is a node in the search tree. It includes all the information about the states and can create a new SearchNode if an action is applied to it.
 +
 +BreadthFirstSearch is a simple class that searches the state space in a breadth first manner. Now, this can take a very long time, so if you wan't you can use this class as a base for a new search class.
 +
 +
 +
 +==== Execution ====
 +In order to execute the plans using the hexapod, we have created some new message types that you can use:
 +
 +    "RU.AI06.Instruct.Move.To.Location"
 +    "RU.AI06.Instruct.PickUp.Object"
 +    "RU.AI06.Instruct.PutInPot.Object"
 +    "RU.AI06.Instruct.Drop.Object"
 +    "RU.AI06.Instruct.EmptyPot"
 +
 +When the hexapod gets these messages it responds by sending back:
 +
 +    "RU.AI06.Instruct.Move.To.Location.Done"
 +    "RU.AI06.Instruct.PickUp.Object.Success" 
 +    "RU.AI06.Instruct.PickUp.Object.Fail" 
 +    "RU.AI06.Instruct.PutInPot.Object.Success" 
 +    "RU.AI06.Instruct.PutInPot.Object.Fail" 
 +    "RU.AI06.Instruct.Drop.Object.Success" 
 +    "RU.AI06.Instruct.EmptyPot.Success" 
 +
 +
 +You can see an example of this in usage in the SimpleMoveController class.
 +
 +**Note:** The executable that starts panda has changed and now it takes as an argument the location of the goal xml file that describes the goal states. So if your xml file is at C:\verkefni\goal.xml you should start the program as "Test.exe C:\verkefni\goal.xml"
 +
 +==== The problems to be solved ====
 +Here are three problems that your plan system should be able to solve. The first 2 can be solved by adding some new actions to the action list. 
 +
 +The third one, however, is pretty complex so the breadth-first planner might get into trouble with it and not be able to solve it. So you might have to create your own planner to solve it.(HINT: You can do simple changes to the breadth-first planner so it is better in handling sequences such as "pickUp banana1-> drop banana1 -> pickUp banana1" )
 +
 +=== Problem 1 ===
 +   <InitialState>
 +      <literal>IsOnGround(banana1)</literal>
 +      <literal>Ingredient(banana1)</literal>
 +      <literal>IsClose(pot1)</literal>
 +      <literal>IsEmpty(pot1)</literal>
 +      <literal>Pot(pot1)</literal>
 +   </InitialState>
 +
 +
 +   <goal>
 +      <condition>Holding(banana1)</condition>
 +   </goal>
 +
 +=== Problem 2 ===
 +   <InitialState>
 +      <literal>IsOnGround(banana1)</literal>
 +      <literal>IsOnGround(plant1)</literal>
 +      <literal>IsOnGround(wand1)</literal>
 +      <literal>Ingredient(banana1)</literal>
 +      <literal>Ingredient(plant1)</literal>
 +      <literal>Ingredient(wand1)</literal>
 +      <literal>IsClose(pot1)</literal>
 +      <literal>IsEmpty(pot1)</literal>
 +      <literal>Pot(pot1)</literal>
 +   </InitialState>
 +
 +   <goal>
 +      <condition>InPot(banana1)</condition>
 +      <condition>InPot(plant1)</condition>
 +      <condition>PutInAfter(banana1, plant1)</condition>
 +   </goal>
 +
 +
 +=== Problem 3 ===
 +
 +   <InitialState>
 +      <literal>IsOnGround(banana1)</literal>
 +      <literal>IsOnGround(banana2)</literal>
 +      <literal>IsOnGround(plant1)</literal>
 +      <literal>IsOnGround(wand1)</literal>
 +      <literal>Ingredient(banana1)</literal>
 +      <literal>Ingredient(plant1)</literal>
 +      <literal>Ingredient(wand1)</literal>
 +      <literal>Ingredient(banana2)</literal> 
 +      <literal>IsClose(pot1)</literal>
 +      <literal>IsEmpty(pot1)</literal>
 +      <literal>Pot(pot1)</literal>
 +   </InitialState>
 +
 +   <goal>
 +      <condition>InPot(banana1)</condition>
 +      <condition>InPot(plant1)</condition>
 +      <condition>Holding(banana2)</condition>
 +      <condition>IsClose(pot1)</condition>
 +      <condition>PutInAfter(banana1, plant1)</condition>
 +   </goal>
  
  
 ===== Using the Newest Hexapod ===== ===== Using the Newest Hexapod =====
  
-==== UPDATE 10 feb. 2007 ==== 
  
-Get the new version {{public:t-622-arti-07-1:hexapod_release.zip|here}}.+ 
 + 
 + 
 +==== NEW HEDAPOD VERSION HERE ==== 
 + 
 +Get the new version {{public:t-622-arti-07-1:hexapod_planning_release.zip|here}}
 + 
 +**Note:** If you got an error involving world.py, this is resolved in the latest version.
  
 ==== Keyboard shortcuts in Hexapod viewer ==== ==== Keyboard shortcuts in Hexapod viewer ====
/var/www/cadia.ru.is/wiki/data/attic/public/t-622-arti-07-1/program_3.1172677429.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki