mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
22 lines
376 B
C++
22 lines
376 B
C++
/*
|
|
* BrainPrep.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_BRAINPREP_H_
|
|
#define PROCESSOR_BRAINPREP_H_
|
|
|
|
#include "ReplicatedPrep.h"
|
|
#include "Math/BrainShare.h"
|
|
|
|
template<class T>
|
|
class BrainPrep : public RingPrep<T>
|
|
{
|
|
public:
|
|
BrainPrep(SubProcessor<T>* proc, DataPositions& usage) :
|
|
RingPrep<T>(proc, usage) {}
|
|
void buffer_triples();
|
|
};
|
|
|
|
#endif /* PROCESSOR_BRAINPREP_H_ */
|