commit last state
[ppam-mpi.git] / code / src / MPI_Main / master.h
1 #ifndef PPAM_MASTER_H
2 #define PPAM_MASTER_H
3
4 #include <stdint.h>
5
6 // code executed by master process
7 void master_run(char* fileName, uint32_t totalNbSeries, uint32_t nbSeriesInChunk,
8 double idealNbSeriesInChunk, uint32_t tsLength, uint32_t nbClusters,
9 int randomize, uint32_t p_for_dissims);
10
11 #endif