/*
  * Sets the boundary constraint of the re-initialisation strategy as well as that of its delegate
  * @param boundaryConstraint The constraint to be given to this strategy as well as its delegate
  */
 @Override
 public void setBoundaryConstraint(BoundaryConstraint boundaryConstraint) {
   this.boundaryConstraint = boundaryConstraint;
   delegate.setBoundaryConstraint(boundaryConstraint);
 }