1 /* Trabalho final da disciplina de Inteligência Artificial
2 Autores: Kauê Silveira - 171671 & Bruno Fiss - 171359
6 #include "Controller.h"
13 #define DO_GENETICS true
15 int main(int argc
, char **argv
)
18 Game
*game
= new Game();
19 Controller
*controller
= new Controller(game
, DO_GENETICS
);
20 Window
*window
= new Window(argc
, argv
, controller
);
21 controller
->set_window(window
);
23 FILE *in
= fopen(argv
[1], "r");
25 printf("loading from file %s...\n", argv
[1]);
31 while(game
->think()) {