25package umontreal.ssj.hups;
27import umontreal.ssj.util.PrintfFormat;
52 return 1.0 - P.getCoordinate(i, j);
68 return 1.0 - innerIterator.nextCoordinate();
72 return 1.0 - innerIterator.nextCoordinate();
76 innerIterator.nextCoordinates(p, d);
77 for (
int j = 0; j < d; j++)
82 innerIterator.nextPoint(p, d);
83 for (
int j = 0; j < d; j++)
int nextPoint(double p[], int d)
Same as nextPoint(p, 0, d).
void nextCoordinates(double p[], int d)
double nextDouble()
Same as nextCoordinate().
AntitheticPointSet(PointSet p)
Constructs an antithetic point set from the given point set p.
PointSetIterator iterator()
Return an iterator for this ContainerPointSet.
double getCoordinate(int i, int j)
By default, returns the untransformed coordinate for the contained point set.
String toString()
Formats a string that contains information about the point set.
This acts as a generic base class for all container classes that contain a point set and apply a spec...
void init(PointSet p0)
Initializes this container point set so that it will contain the point set p0.
This abstract class represents a general point set.
This is the interface for iterators that permit one to go through the points of a PointSet and the su...