|
FreePOOMA
2.4.1
|
Interval is a very simple type of domain, which refers to a set of points a, a+1, a+2, ..., b. More...
#include "Domain/Domain.h"#include "Domain/DomainTraits.Interval.h"#include "Domain/NewDomain.h"#include "Utilities/NoInit.h"#include "Utilities/PAssert.h"

Classes | |
| class | Interval< Dim > |
| Interval<N> is a domain representing a set of N numeric sequences, one for each dimension N. More... | |
| class | Interval< 1 > |
| Interval<1> is a 1D specialization of Interval<N>; for the 1D case, there are only a restricted set of constructors available. More... | |
Interval is a very simple type of domain, which refers to a set of points a, a+1, a+2, ..., b.
It has a hard-coded stride of 1. Interval<N> is basically an array of Interval<1> objects. Interval defers most of its implementation to the Domain<DomainTraits<Interval>> base class.
1.7.6.1