|
virtual void | refineGridpoint (GridStorage &storage, size_t refine_index) |
| This method refines a grid point by generating the children in every dimension of the grid where the level is greater than 1 and all their missing ancestors by calling create_gridpoint().
|
|
void | free_refine (GridStorage &storage, RefinementFunctor &functor, std::vector< size_t > *addedPoints=nullptr) override |
| Refines a grid according to a RefinementFunctor provided.
|
|
size_t | getNumberOfRefinablePoints (GridStorage &storage) override |
| Computes and returns the number of grid points, which can be refined.
|
|
void | refineGridpoint1D (GridStorage &storage, GridPoint &point, size_t d) override |
| Refine one grid point along a single direction.
|
|
void | refineGridpoint1D (GridStorage &storage, size_t seq, size_t d) override |
| Refine one grid point along a single direction.
|
|
| ~HashRefinement () override |
|
virtual size_t | getIndexOfMin (RefinementFunctor::value_type *array, size_t length) |
| Returns the index of the first occurrence of minimal element in array.
|
|
bool | isRefinable (GridStorage &storage, GridPoint &point) |
| Check if the grid point is refinable.
|
|
virtual | ~AbstractRefinement () |
| Destructor.
|
|
|
typedef std::vector< refinement_pair_type > | refinement_container_type |
| Container for the collection of the refinement atoms and the corresponding value.
|
|
typedef AbstractRefinement_refinement_key | refinement_key_type |
| Type of the identifier of the refinement atom (e.g.
|
|
typedef std::forward_list< AbstractRefinement::refinement_pair_type > | refinement_list_type |
|
typedef std::pair< std::shared_ptr< refinement_key_type >, refinement_value_type > | refinement_pair_type |
| Pair for the refinement key and value.
|
|
typedef double | refinement_value_type |
| Type of functor value assigned to each refinement atom.
|
|
static bool | compare_pairs (const refinement_pair_type &lhs, const refinement_pair_type &rhs) |
| Comparison of the refinement_pair_type.
|
|
virtual void | addElementToCollection (const GridStorage::grid_map_iterator &iter, AbstractRefinement::refinement_list_type current_value_list, size_t refinements_num, AbstractRefinement::refinement_container_type &collection) |
| Adds elements to the collection.
|
|
void | collectRefinablePoints (GridStorage &storage, RefinementFunctor &functor, AbstractRefinement::refinement_container_type &collection) override |
| Examines the grid points and stores the indices those that can be refined and have maximal indicator values.
|
|
void | createGridpoint (GridStorage &storage, GridPoint &point) override |
| This method creates a new point on the grid.
|
|
AbstractRefinement::refinement_list_type | getIndicator (GridStorage &storage, const GridStorage::grid_map_iterator &iter, const RefinementFunctor &functor) const override |
| Generates a list with indicator elements.
|
|
void | refineGridpoint (GridStorage &storage, size_t refine_index) override |
| This method refines a grid point by generating the children in every dimension of the grid and all their missing ancestors by calling create_gridpoint().
|
|
void | refineGridpointsCollection (GridStorage &storage, RefinementFunctor &functor, AbstractRefinement::refinement_container_type &collection) override |
| Extends the grid adding elements defined in collection.
|
|
virtual void | createGridpoint1D (GridPoint &point, size_t d, GridStorage &storage, index_t &source_index, level_t &source_level) |
| Creates children grid points along single direction.
|
|
virtual void | createGridpointSubroutine (GridStorage &storage, GridPoint &point) |
| Subroutine for grid point creation.
|
|