Files
MP-SPDZ/Processor/config.h
Marcel Keller cc0711c224 MP-SPDZ.
2018-10-11 17:20:26 +11:00

22 lines
288 B
C

/*
* config.h
*
*/
#ifndef PROCESSOR_CONFIG_H_
#define PROCESSOR_CONFIG_H_
#include "Math/Share.h"
//#define REPLICATED
#ifdef REPLICATED
typedef Share<FixedVec<Integer, 2> > sint;
#else
typedef Share<gfp> sint;
#endif
typedef Share<gf2n> sgf2n;
#endif /* PROCESSOR_CONFIG_H_ */