5#ifndef SGRUN_GRIDGENERATION_H
6#define SGRUN_GRIDGENERATION_H
8#include "../indices/index.h"
9#include "../iterator/depthIterator.h"
10#include "sparseGrid.h"
12void support(
const IndexDimension& P, IndexDimension& Imin, IndexDimension& Imax);
13bool overlap(
const IndexDimension& P,
const IndexDimension& Q, IndexDimension& Imin, IndexDimension& Imax);
14Depth max(Depth& TP, Depth& TQ);
16bool refill(
AdaptiveSparseGrid& grid, IndexDimension P, IndexDimension Q, Depth T,
unsigned long p,
unsigned long q);
17bool refill_NEU(
AdaptiveSparseGrid& grid, IndexDimension P, IndexDimension Q, Depth T,
unsigned long p,
unsigned long q, std::vector<IndexDimension>& pointsToAdd);
Definition sparseGrid.h:277