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

26 lines
381 B
C++

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