SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
PolynomialLatticeSearch.java
1/*
2 * Class: PolynomialLatticeSearch
3 * Description:
4 * Environment: Java
5 * Software: SSJ
6 * Copyright (C) 2018 Pierre L'Ecuyer and Universite de Montreal
7 * Organization: DIRO, Universite de Montreal
8 * @author Maxime Godin and Pierre Marion
9 * @since August 2018
10 *
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 *
24 */
25
26package umontreal.ssj.latnetbuilder;
27
32
33 String pointSetType;
34
42 public PolynomialLatticeSearch(String pointSetType) {
43 super("polynomial");
44 this.pointSetType = pointSetType;
45 }
46
50 @Override
51 public String pointSetType() {
52 return pointSetType;
53 }
54
60 public void changePointSetTypeView(String pointSetType) {
61 this.pointSetType = pointSetType;
62 }
63
67 @Override
68 public void setConstruction(String construction) {
69 return;
70 }
71}
DigitalNetSearch(String construction)
Constructor.
void changePointSetTypeView(String pointSetType)
Changes the point set type to use when searching.
void setConstruction(String construction)
Sets the construciton method of the searched digital net.
String pointSetType()
Returns the type of the searched point set.