Uses of Class
org.jgrapht.generate.netgen.NetworkGeneratorConfigBuilder
Package | Description |
---|---|
org.jgrapht.generate.netgen |
Network generator components
|
-
Uses of NetworkGeneratorConfigBuilder in org.jgrapht.generate.netgen
Methods in org.jgrapht.generate.netgen that return NetworkGeneratorConfigBuilder Modifier and Type Method Description NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setArcNum(int arcNum)
Sets the number of arcs in the network.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setBipartiteMatchingProblemParams(int nodeNum, int arcNum)
Sets bipartite matching parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setBipartiteMatchingProblemParams(int nodeNum, int arcNum, int minCost, int maxCost)
Sets bipartite matching parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setBipartiteMatchingProblemParams(int nodeNum, int arcNum, int minCost, int maxCost, int percentWithInfCost)
Sets bipartite matching parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMaxCap(int maxCap)
Sets the arc capacity upper bound.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMaxCost(int maxCost)
Sets the arc cost upper bound.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMaximumFlowProblemParams(int nodeNum, int arcNum, int supply)
Sets maximum flow network parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMaximumFlowProblemParams(int nodeNum, int arcNum, int supply, int minCap, int maxCap)
Sets maximum flow network parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMaximumFlowProblemParams(int nodeNum, int arcNum, int supply, int minCap, int maxCap, int sourceNum, int sinkNum)
Sets maximum flow network parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMaximumFlowProblemParams(int nodeNum, int arcNum, int supply, int minCap, int maxCap, int sourceNum, int sinkNum, int percentCapacitated)
Sets maximum flow network parameter subset.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMinCap(int minCap)
Sets the arc capacity lower bound.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setMinCost(int minCost)
Sets the arc cost lower bound.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setNodeNum(int nodeNum)
Sets the number of nodes in the network.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setParams(int nodeNum, int arcNum, int sourceNum, int sinkNum, int transshipSourceNum, int transshipSinkNum, int totalSupply, int minCap, int maxCap, int minCost, int maxCost, int percentCapacitated, int percentWithInfCost)
Sets all the network parameters.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setPercentCapacitated(int percentCapacitated)
Sets the percent of arcs to have finite capacity.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setPercentWithInfCost(int percentWithInfCost)
Sets the percent of arcs to have infinite cost.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setSinkNum(int sinkNum)
Sets the number of sinks in the network.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setSourceNum(int sourceNum)
Sets the number of sources in the network.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setTotalSupply(int totalSupply)
Sets the total supply of the network.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setTSinkNum(int tSinkNum)
Sets the number of transshipment sinks in the network.NetworkGeneratorConfigBuilder
NetworkGeneratorConfigBuilder. setTSourceNum(int tSourceNum)
Sets the number of transshipment sources in the network.