complete first draft of package
[epclust.git] / old_C_code / stage1 / src / MPI_Main / master.h
CommitLineData
ab4a34ef
BA
1#ifndef PPAM_MASTER_H
2#define PPAM_MASTER_H
3
4#include <stdint.h>
5
6// code executed by master process
7void 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