/* * BrainPrep.h * */ #ifndef PROCESSOR_BRAINPREP_H_ #define PROCESSOR_BRAINPREP_H_ #include "ReplicatedPrep.h" #include "Math/BrainShare.h" template class BrainPrep : public RingPrep { public: BrainPrep(SubProcessor* proc, DataPositions& usage) : RingPrep(proc, usage) {} void buffer_triples(); }; #endif /* PROCESSOR_BRAINPREP_H_ */