FlexELA
Loading...
Searching...
No Matches
checkpoint.h
1#ifndef CHECKPOINT_H
2#define CHECKPOINT_H
3
4#include <cstdint>
5#include <fstream>
6#include <stdexcept>
7#include <string>
8
9#include "../domain/domain.h"
10
11namespace checkpoint {
12constexpr std::uint8_t CURRENT_CHECKPOINT_VERSION_NUMBER = 1;
13
14void create(const char* filename, const domain::Domain& dom);
15
16void load(const char* filename, const domain::Domain& dom);
17} // namespace checkpoint
18
19#endif
A wrapper for global ELA data.
Definition domain.h:43