mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
15 lines
226 B
C++
15 lines
226 B
C++
// (C) 2018 University of Bristol. See License.txt
|
|
|
|
/*
|
|
* cnc-offline.cpp
|
|
*
|
|
*/
|
|
|
|
#include "FHEOffline/CutAndChooseMachine.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
CutAndChooseMachine(argc, argv).run();
|
|
return 0;
|
|
}
|