Uses of Class
org.jgrapht.generate.netgen.NetworkGeneratorConfigBuilder
Packages that use NetworkGeneratorConfigBuilder
-
Uses of NetworkGeneratorConfigBuilder in org.jgrapht.generate.netgen
Methods in org.jgrapht.generate.netgen that return NetworkGeneratorConfigBuilderModifier and TypeMethodDescriptionNetworkGeneratorConfigBuilder.setArcNum
(int arcNum) Sets the number of arcs in the network.NetworkGeneratorConfigBuilder.setBipartiteMatchingProblemParams
(int nodeNum, int arcNum) Sets bipartite matching parameter subset.NetworkGeneratorConfigBuilder.setBipartiteMatchingProblemParams
(int nodeNum, int arcNum, int minCost, int maxCost) Sets bipartite matching parameter subset.NetworkGeneratorConfigBuilder.setBipartiteMatchingProblemParams
(int nodeNum, int arcNum, int minCost, int maxCost, int percentWithInfCost) Sets bipartite matching parameter subset.NetworkGeneratorConfigBuilder.setMaxCap
(int maxCap) Sets the arc capacity upper bound.NetworkGeneratorConfigBuilder.setMaxCost
(int maxCost) Sets the arc cost upper bound.NetworkGeneratorConfigBuilder.setMaximumFlowProblemParams
(int nodeNum, int arcNum, int supply) Sets maximum flow network parameter subset.NetworkGeneratorConfigBuilder.setMaximumFlowProblemParams
(int nodeNum, int arcNum, int supply, int minCap, int maxCap) Sets maximum flow network parameter subset.NetworkGeneratorConfigBuilder.setMaximumFlowProblemParams
(int nodeNum, int arcNum, int supply, int minCap, int maxCap, int sourceNum, int sinkNum) Sets maximum flow network parameter subset.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.setMinCap
(int minCap) Sets the arc capacity lower bound.NetworkGeneratorConfigBuilder.setMinCost
(int minCost) Sets the arc cost lower bound.NetworkGeneratorConfigBuilder.setNodeNum
(int nodeNum) Sets the number of nodes in the network.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.setPercentCapacitated
(int percentCapacitated) Sets the percent of arcs to have finite capacity.NetworkGeneratorConfigBuilder.setPercentWithInfCost
(int percentWithInfCost) Sets the percent of arcs to have infinite cost.NetworkGeneratorConfigBuilder.setSinkNum
(int sinkNum) Sets the number of sinks in the network.NetworkGeneratorConfigBuilder.setSourceNum
(int sourceNum) Sets the number of sources in the network.NetworkGeneratorConfigBuilder.setTotalSupply
(int totalSupply) Sets the total supply of the network.NetworkGeneratorConfigBuilder.setTSinkNum
(int tSinkNum) Sets the number of transshipment sinks in the network.NetworkGeneratorConfigBuilder.setTSourceNum
(int tSourceNum) Sets the number of transshipment sources in the network.