Package jline.solvers
Class NetworkAvgChainTable
-
- All Implemented Interfaces:
public class NetworkAvgChainTable extends AvgTable
-
-
Field Summary
Fields Modifier and Type Field Description public List<String>chainNamespublic List<String>stationNamespublic List<String>inChainNames
-
Method Summary
Modifier and Type Method Description List<String>getChainNames()voidsetChainNames(List<String> chainNames)List<String>getStationNames()voidsetStationNames(List<String> stationNames)List<String>getInChainNames()voidsetInChainNames(List<String> inChainNames)List<Double>get(int col)Retrieves a specific column from the table as a list. List<Double>getArvR()List<Double>getQLen()List<Double>getResidT()List<Double>getRespT()List<Double>getTput()List<Double>getUtil()voidprint()Prints the table contents in a human-readable format. voidprint(SolverOptions options)voidprintTable()voidprintTable(SolverOptions options)voidsetNumberOfDigits(int nd)voidsetOptions(SolverOptions options)Sets the solver options associated with this table. AvgTabletget(Station station, JobClass jobclass)AvgTabletget(String stationname, String classname)-
-
Method Detail
-
getChainNames
List<String> getChainNames()
-
setChainNames
void setChainNames(List<String> chainNames)
-
getStationNames
List<String> getStationNames()
-
setStationNames
void setStationNames(List<String> stationNames)
-
getInChainNames
List<String> getInChainNames()
-
setInChainNames
void setInChainNames(List<String> inChainNames)
-
get
List<Double> get(int col)
Retrieves a specific column from the table as a list.
- Parameters:
col- the column index to retrieve- Returns:
the column data as a List of Double values
-
print
void print()
Prints the table contents in a human-readable format. Implementation is provided by subclasses for specific table types.
-
print
void print(SolverOptions options)
-
printTable
void printTable()
-
printTable
void printTable(SolverOptions options)
-
setNumberOfDigits
void setNumberOfDigits(int nd)
-
setOptions
void setOptions(SolverOptions options)
Sets the solver options associated with this table.
- Parameters:
options- the solver options used when computing this table
-
-
-
-