Files
MP-SPDZ/Processor/FixInput.h
2019-07-11 14:59:18 +10:00

26 lines
373 B
C++

/*
* FixInput.h
*
*/
#ifndef PROCESSOR_FIXINPUT_H_
#define PROCESSOR_FIXINPUT_H_
#include <iostream>
#include "Math/bigint.h"
class FixInput
{
public:
const static int N_DEST = 1;
const static int N_PARAM = 1;
const static char* NAME;
bigint items[N_DEST];
void read(std::istream& in, const int* params);
};
#endif /* PROCESSOR_FIXINPUT_H_ */