B.A.R.G.A.M.E.  v2.0
El Farol Bar Problem Implementation
 All Classes Namespaces Files Functions Variables Typedefs Defines
Doxygen Specific Source Code/Graph.h
Go to the documentation of this file.
00001 #ifndef GRAPH_H
00002 #define GRAPH_H
00003 
00004 
00006 
00012 struct pass_graph {
00013 
00017         int numWinBars; 
00018         
00022         int numWinners; //
00023         
00027         double avgStratScore; //
00028         
00032         double bestStratScore;
00033         
00037         bool barCompare[256];
00038         
00042         bool age[100];
00043 
00047         bool deaths;
00048         };
00049 
00050         typedef struct pass_graph* graphPtr; 
00051 
00052 #endif