FreePOOMA  2.4.1
Classes
Interval.h File Reference

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"
Include dependency graph for Interval.h:
This graph shows which files directly or indirectly include this file:

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...

Detailed Description

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.