mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
15 lines
207 B
C++
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
|