<?xml version="1.0" encoding="UTF-8"?>

<archetype name="Party"
            xmlns:xsi="http://www.w3.org/2001/SMLSchema-instance"
 	    xmlns="http://www.cs.uky.edu/bap/prefs"
	    xsi:schemaLocation="schema.xsd">

<!-- This first graph looks like this:
     
		MorningClasses
		   /      \
               Goldsmith   Klapper
                 /           \
                0             0

where each path is written out from root node to utility (leaf)
--> 

  <graph order="1">
      <path order="1">
         <root name="MorningClasses"/>
         <node name="Goldsmith" order="1"/>
         <leaf utility="0"/>
      </path>
      <path order="2">
         <root name="MorningClasses"/>
         <node name="Klapper" order="1"/>
  	 <leaf utility="0"/>
      </path>
   </graph>

<!-- This second graph looks like:
   
          TuesdayThursdayClasses
            /                 \
       RocksForJocks     AdvancedRocketScience
          /                /               \
       Afternoon      Morning            Afternoon
       /               /                     \
      6                0                      1

with each path being specified.

-->

   
   <graph order="2">
      <path order="1">
         <root name="TuesdayThursdayClasses"/>
  	 <node name="RocksForJocks" order="1"/>
	 <node name="Afternoon" order="2"/>
	 <leaf utility="6"/>
      </path>
      <path order="2">
         <root name="TuesdayThursdayClasses"/>
   	 <node name="AdvancedRocketScience" order="1"/>
  	 <node name="Morning" order="2"/>
         <leaf utility="0"/>
      </path>
      <path order="3">
         <root name="TuesdayThursdayClasses"/>
         <node name="AdvancedRocketScience" order="1"/>
         <node name="Afternoon" order="2"/>
 	 <leaf utility="1"/>
      </path>
   </graph>   
</archetype>
