Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXNETaddnodes
adds new nodes to the network
stored in a network problem object.
Example
status = CPXNETaddnodes (env, net, nnodes, supply, NULL);
env | A pointer to the CPLEX environment as returned by |
net | A pointer to a CPLEX network problem object as returned by |
nnodes | Number of nodes to add. |
supply | Supply values for the added nodes. If NULL is passed, all supplies defaults to 0 (zero). Otherwise, the size of the array must be at least |
name | Pointer to an array of names for added nodes. If NULL is passed and the existing nodes have names, default names are assigned to the added nodes. If NULL is passed but the existing nodes have no names, the new nodes are assigned no names. Otherwise, the size of the array must be at least |