mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
43 lines
717 B
C++
43 lines
717 B
C++
/*
|
|
* CcdPrep.hpp
|
|
*
|
|
*/
|
|
|
|
#ifndef GC_CCDPREP_HPP_
|
|
#define GC_CCDPREP_HPP_
|
|
|
|
#include "CcdPrep.h"
|
|
|
|
#include "Processor/Processor.hpp"
|
|
|
|
namespace GC
|
|
{
|
|
|
|
template<class T>
|
|
CcdPrep<T>::~CcdPrep()
|
|
{
|
|
if (part_proc)
|
|
delete part_proc;
|
|
}
|
|
|
|
template<class T>
|
|
void CcdPrep<T>::set_protocol(typename T::Protocol& protocol)
|
|
{
|
|
auto& thread = ShareThread<T>::s();
|
|
assert(thread.MC);
|
|
|
|
if (part_proc)
|
|
{
|
|
assert(&part_proc->MC == &thread.MC->get_part_MC());
|
|
assert(&part_proc->P == &protocol.get_part().P);
|
|
return;
|
|
}
|
|
|
|
part_proc = new SubProcessor<typename T::part_type>(
|
|
thread.MC->get_part_MC(), part_prep, protocol.get_part().P);
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* GC_CCDPREP_HPP_ */
|