|
SSJ V. 2.6.2. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object umontreal.iro.lecuyer.hups.PointSet umontreal.iro.lecuyer.hups.DigitalNet umontreal.iro.lecuyer.hups.DigitalNetFromFile
public class DigitalNetFromFile
This class allows us to read the parameters defining a digital net either
from a file, or from a URL address on the World Wide Web.
The parameters used in building the net are those defined in class
DigitalNet
.
The format of the data files must be the following:
(see the format in guidehups.pdf)
The figure above gives the general format of the data file needed by DigitalNetFromFile. The values of the parameters on the left must appear in the file as integers. On the right of each parameter, there is an optional comment that is disregarded by the reader program. In general, the Java line comments // are accepted anywhere and will ensure that the rest of the line is dropped by the reader. Blank lines are also disregarded by the reader program. For each dimension, there must be a k×r matrix of integers in {0, 1,…, b - 1} (note that the matrices must appear in transposed form).
The predefined files of parameters are kept in different directories, depending on the criteria used in the searches for the parameters defining the digital net. These files have all been stored at the address http://simul.iro.umontreal.ca/ssj/data. Each file contains the parameters for a specific digital net. The name of the files gives information about the main parameters of the digital net. For example, the file named Edel/OOA2/B3S13R9C9St6 contains the parameters for a digital net proposed by Yves Edel (see http://www.mathi.uni-heidelberg.de/~yves/index.html) based on ordered orthogonal arrays; the digital net has base B = 3, dimension S = 13, the generating matrices have R = 9 rows and C = 9 columns, and the strength of the net is St = 6.
Constructor Summary | |
---|---|
DigitalNetFromFile(String filename,
int s)
Same as DigitalNetFromFile (filename, r, r, s) where
s is the dimension and r is given in data file filename. |
|
DigitalNetFromFile(String filename,
int r1,
int w,
int s1)
Constructs a digital net after reading its parameters from file filename. |
Method Summary | |
---|---|
static String |
listDir(String dirname)
Lists all files (or directories) in directory dirname. |
static void |
listDirHTML(String dirname,
String filename)
Creates a list of all data files in directory dirname and writes that list in format HTML in output file filename. |
String |
toString()
Formats a string that contains information about the point set. |
String |
toStringDetailed()
Writes the parameters and the generating matrices of this digital net to a string. |
Methods inherited from class umontreal.iro.lecuyer.hups.PointSet |
---|
addRandomShift, addRandomShift, formatPoints, formatPoints, formatPoints, formatPoints, formatPointsBase, formatPointsBase, formatPointsBase, formatPointsBase, formatPointsNumbered, formatPointsNumbered, getDimension, getNumPoints, getStream, randomize, randomize, randomize, randomize, randomize, setStream |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public DigitalNetFromFile(String filename, int r1, int w, int s1) throws MalformedURLException, IOException
filename
- Name of the file to be readr1
- Number of rows for the generating matricesw
- Number of digits of resolutions1
- Number of dimensions
MalformedURLException
IOException
public DigitalNetFromFile(String filename, int s) throws MalformedURLException, IOException
DigitalNetFromFile
(filename, r, r, s) where
s is the dimension and r is given in data file filename.
filename
- Name of the file to be reads
- Number of dimensions
MalformedURLException
IOException
Method Detail |
---|
public String toString()
PointSet
toString
in class DigitalNet
public String toStringDetailed()
public static String listDir(String dirname) throws IOException
IOException
public static void listDirHTML(String dirname, String filename) throws IOException
IOException
|
SSJ V. 2.6.2. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |