#ifndef animacao #define animacao #define _GNU_SOURCE #include #include #include #include #include //#include #include typedef struct Plot_ Plot_t; Plot_t *openPlot(char *dir,char *name,int nBoxes,int iteracao); void drawRectangles(Plot_t *plot,candidato_t *list,QFILA_t qual); void drawLine(Plot_t *plot,char*which,float val); void closePlot(Plot_t *plot); // Internas void makeDir(char *dir,char *name,char *which); #endif