Package jline.solvers
Class NetworkAvgSysTable
-
- All Implemented Interfaces:
public class NetworkAvgSysTable extends AvgTable
-
-
Field Summary
Fields Modifier and Type Field Description public List<String>chainNamespublic List<String>inChainNames
-
Constructor Summary
Constructors Constructor Description NetworkAvgSysTable(List<Double> SysRespTval, List<Double> SysTputval, SolverOptions options)
-
Method Summary
Modifier and Type Method Description List<String>getChainNames()voidsetChainNames(List<String> chainNames)List<String>getInChainNames()voidsetInChainNames(List<String> inChainNames)static NetworkAvgSysTabletget(NetworkAvgSysTable T, String chainname)List<Double>get(int col)Retrieves a specific column from the table as a list. List<Double>getSysRespT()List<Double>getSysTput()voidprint()Prints the table contents in a human-readable format. voidprint(SolverOptions options)voidprintTable()voidprintTable(SolverOptions options)voidsetNumberOfDigits(int nd)NetworkAvgSysTabletget(Chain chain)NetworkAvgSysTabletget(String chainname)voidsetOptions(SolverOptions options)Sets the solver options associated with this table. -
-
Constructor Detail
-
NetworkAvgSysTable
NetworkAvgSysTable(List<Double> SysRespTval, List<Double> SysTputval, SolverOptions options)
-
-
Method Detail
-
getChainNames
List<String> getChainNames()
-
setChainNames
void setChainNames(List<String> chainNames)
-
getInChainNames
List<String> getInChainNames()
-
setInChainNames
void setInChainNames(List<String> inChainNames)
-
tget
static NetworkAvgSysTable tget(NetworkAvgSysTable T, String chainname)
-
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
-
getSysRespT
List<Double> getSysRespT()
-
getSysTput
List<Double> getSysTput()
-
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)
-
tget
NetworkAvgSysTable tget(Chain chain)
-
tget
NetworkAvgSysTable tget(String chainname)
-
setOptions
void setOptions(SolverOptions options)
Sets the solver options associated with this table.
- Parameters:
options- the solver options used when computing this table
-
-
-
-