mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
19 lines
253 B
C
19 lines
253 B
C
/*
|
|
* config.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_CONFIG_H_
|
|
#define PROCESSOR_CONFIG_H_
|
|
|
|
#include "Math/Share.h"
|
|
#include "Math/Rep3Share.h"
|
|
|
|
#ifdef REPLICATED
|
|
#error REPLICATED flag is obsolete
|
|
#endif
|
|
|
|
typedef Share<gfp> sgfp;
|
|
|
|
#endif /* PROCESSOR_CONFIG_H_ */
|