mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 21:48:11 -05:00
23 lines
266 B
C++
23 lines
266 B
C++
/*
|
|
* config.h
|
|
*
|
|
*/
|
|
|
|
#ifndef YAO_CONFIG_H_
|
|
#define YAO_CONFIG_H_
|
|
|
|
//#define DEBUG
|
|
|
|
//#define CHECK_BUFFER
|
|
|
|
class YaoFullGate;
|
|
class YaoHalfGate;
|
|
|
|
#ifndef FULL_GATES
|
|
typedef YaoHalfGate YaoGate;
|
|
#else
|
|
typedef YaoFullGate YaoGate;
|
|
#endif
|
|
|
|
#endif /* YAO_CONFIG_H_ */
|