Files
MP-SPDZ/BMR/Wire.h
Marcel Keller 4ef6b6d873 Maintenance.
2020-05-08 21:43:05 +10:00

15 lines
207 B
C++

#ifndef __WIRE_H__
#define __WIRE_H__
#include <vector>
#include "Key.h"
#include "common.h"
class Gate;
#define NO_SIGNAL (2) //since this is a boolean circuit, valid values are either 0 or 1.
#endif