mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 05:03:59 -05:00
26 lines
401 B
C++
26 lines
401 B
C++
/*
|
|
* RingOptions.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_RINGOPTIONS_H_
|
|
#define PROCESSOR_RINGOPTIONS_H_
|
|
|
|
#include "Tools/ezOptionParser.h"
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
class RingOptions
|
|
{
|
|
bool R_is_set;
|
|
|
|
public:
|
|
int R;
|
|
|
|
RingOptions(ez::ezOptionParser& opt, int argc, const char** argv);
|
|
|
|
int ring_size_from_opts_or_schedule(string progname);
|
|
};
|
|
|
|
#endif /* PROCESSOR_RINGOPTIONS_H_ */
|