#pragma once #include "Global.h" class BOP { private: int a, n; public: BOP(int n, int a); int f1(IntVec const &x); int f2(IntVec const &x); IntVec getX0(int xid); // constructs starting point depending on a, n, xid };