mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
22 lines
288 B
C
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_ */
|