/** @brief Access the value of last element in the partition_vector.
  *
  *  Calling the function on empty container cause undefined behavior.
  *
  * @return Return the value of the last element in the partition_vector
  */
 T back() const
 {
     return partition_vector_.back();
 }