All Data Structures Files Functions Variables Enumerations Enumerator Properties Defines
/Projects/Cogito/src/GameObjects/CogitoAgents/DecisionTreeAgent.h
Go to the documentation of this file.
00001 //
00002 //  DecisionTreeAgent.h
00003 //  Author: Thomas Taylor
00004 //
00005 //  Handles the machine learning using Decision
00006 //  Tree learning
00007 //
00008 //  06/02/2012: Created class
00009 //
00010 
00011 #import "AgentStats.h"
00012 #import "CogitoAgent.h"
00013 #import "TreeState.h"
00014 
00015 @interface DecisionTreeAgent : CogitoAgent
00016 
00017 {    
00018     TreeState* levelTree;    
00019     TreeState* currentState;
00020     Action currentAction;
00021     
00022     CCArray* optimumRoute;
00023     int optimumRouteIndex;    
00024 }
00025 
00026 @end