Files
MP-SPDZ/bmr-program-party.cpp
2018-03-07 12:25:45 +00:00

15 lines
218 B
C++

// (C) 2018 University of Bristol, Bar-Ilan University. See License.txt
/*
* bmr-program-party.cpp
*
*/
#include "BMR/Party.h"
int main(int argc, char** argv)
{
ProgramParty party(argc, argv);
party.Start();
}