SSJ
3.3.1
Stochastic Simulation in Java
|
Class for the search of good polynomial lattice rules using LatNet Builder. More...
Public Member Functions | |
PolynomialLatticeSearch (String pointSetType) | |
Constructor. More... | |
String | pointSetType () |
void | changePointSetTypeView (String pointSetType) |
Changes the point set type to use when searching. More... | |
void | setConstruction (String construction) |
Public Member Functions inherited from DigitalNetSearch | |
DigitalNetSearch (String construction) | |
Constructor. More... | |
DigitalNetBase2 | search () throws RuntimeException |
String | pointSetType () |
int | interlacing () |
void | setInterlacing (int interlacing) |
Sets the interlacing factor of the searched digital net. More... | |
String | construction () |
void | setConstruction (String construction) |
Sets the construciton method of the searched digital net. More... | |
Public Member Functions inherited from Search | |
String | toString () |
Formats the search parameters for printing. | |
abstract String | pointSetType () |
Returns the type of the searched point set. | |
abstract int | interlacing () |
Returns the interlacing factor of the search. | |
abstract String | construction () |
abstract PointSet | search () throws RuntimeException |
Executes the search and returns the corresponding point set. | |
double | merit () |
Returns the merit value of the point set. | |
double | time () |
Returns the elapsed CPU time taken for the search. | |
boolean | successful () |
Returns a boolean indicating if the search was successful. | |
void | setPathToLatNetBuilder (String path) |
Sets the path to the latnetbuilder executable. More... | |
void | setDimension (int dimension) |
Sets the dimension of the searched point set. More... | |
void | setSizeParameter (String sizeParameter) |
Sets the size parameter of the point set. More... | |
void | setMultilevel (boolean multilevel) |
Sets the search to the multilevel mode. More... | |
void | setCombiner (String combiner) |
Sets the combiner for the merit in the multilevel mode case. More... | |
void | setExplorationMethod (String explorationMethod) |
Sets the exploration method of the search. More... | |
void | setFigureOfMerit (String figure) |
Sets the figure of merit of the search. More... | |
void | setNormType (String normType) |
Sets the norm-type for the figure of merit of the search. More... | |
void | setWeights (List< String > weights) |
Sets the weights to the figure of merit of the search. More... | |
void | addWeight (String weight) |
Add a weight to the figure of merit of the search. More... | |
void | setFilters (List< String > filters) |
Sets the filters of the search. More... | |
void | setPathToOutputFolder (String path) |
Sets the path to the output folder. | |
Package Attributes | |
String | pointSetType |
Package Attributes inherited from DigitalNetSearch | |
String | construction |
int | interlacing |
Package Attributes inherited from Search | |
String | pathToOutputFolder |
String | sizeParameter |
int | dimension |
boolean | multilevel |
String | combiner |
String | explorationMethod |
String | figure |
String | normType |
ArrayList< String > | weights |
ArrayList< String > | filters |
boolean | successful |
double | merit |
double | time |
Additional Inherited Members | |
Protected Member Functions inherited from Search | |
Search () | |
Constructor. | |
ArrayList< String > | executeCommandLine () |
Executes the command-line and reads the content of the outputMachine.txt file. | |
Static Package Attributes inherited from Search | |
static String | PATH_TO_LATNETBUILDER = "latnetbuilder" |
Class for the search of good polynomial lattice rules using LatNet Builder.
PolynomialLatticeSearch | ( | String | pointSetType | ) |
Constructor.
pointSetType | Point set type (lattice or net). Used to switch between the two implementation of polynomial lattice rules in LatNet Builder. |
void changePointSetTypeView | ( | String | pointSetType | ) |
Changes the point set type to use when searching.
pointSetType | Point set type (lattice or net). |