commit last state
[ppam-mpi.git] / code / src / TimeSeries / deserialize.h
1 #ifndef PPAM_DESERIALIZE_H
2 #define PPAM_DESERIALIZE_H
3
4 #include <stdint.h>
5 #include <stdlib.h>
6 #include "Util/types.h"
7
8 // deserialize a portion of a binary file into an array of PowerCurve
9 PowerCurve* deserialize(const char* ifileName, const char* ofileName,
10 uint32_t* ranks, uint32_t nbRanks);
11
12 #endif