- /// Copy constructor
- MR( const MR &x ) : DAIAlgFG(x), supported(x.supported), con(x.con), nb(x.nb), tJ(x.tJ), theta(x.theta), M(x.M), kindex(x.kindex), cors(x.cors), N(x.N), Mag(x.Mag), _maxdiff(x._maxdiff), _iters(x._iters), props(x.props) {}
-
- /// Assignment operator
- MR& operator=( const MR &x ) {
- if( this != &x ) {
- DAIAlgFG::operator=(x);
- supported = x.supported;
- con = x.con;
- nb = x.nb;
- tJ = x.tJ;
- theta = x.theta;
- M = x.M;
- kindex = x.kindex;
- cors = x.cors;
- N = x.N;
- Mag = x.Mag;
- _maxdiff = x._maxdiff;
- _iters = x._iters;
- props = x.props;
- }
- return *this;
- }
-