mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
13 lines
237 B
C++
13 lines
237 B
C++
/*
|
|
* replicated-field-party.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Processor/ReplicatedMachine.hpp"
|
|
#include "Math/gfp.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
ReplicatedMachine<Rep3Share<gfp>, Rep3Share<gf2n>>(argc, argv, "replicated-field");
|
|
}
|