bool measure_abs,
std::string splitting_policy,
bool P1P0_bary_method );
- void copyOptions(InterpolationOptions & other) { *this = other; }
+ void copyOptions(const InterpolationOptions & other) { *this = other; }
bool setOptionDouble(const std::string& key, double value);
bool setOptionInt(const std::string& key, int value);
bool setOptionString(const std::string& key, const std::string& value);
{
//locate the distant meshes
ElementLocator locator(*_local_field, *_target_group, *_source_group);
-
- //transfering option from InterpKernelDEC to ElementLocator
- locator.setBoundingBoxAdjustment(getBoundingBoxAdjustment());
-
+ //transfering option from InterpKernelDEC to ElementLocator
+ locator.copyOptions(*this);
MEDCouplingPointSet* distant_mesh=0;
int* distant_ids=0;
std::string distantMeth;