mascoptDev.algos.graph
Class NDCplexInteger

java.lang.Object
  |
  +--mascoptDev.algos.graph.NDCplexInteger

public class NDCplexInteger
extends Object

Provides an algorithm to solve (by using cplex) the network design problem. This linear program is considered with an arc-path formulation, you must enter a map (which is a public HashMap phiMap) which contains the set of paths for each request. We have as entry : one graph G, one request graph D result : resolution solve the problem (with cplex) and write the solution


Field Summary
 double INFINI
           
 HashMap phiMap
           
 HashMap varpMap
           
 HashMap xMap
           
 
Constructor Summary
NDCplexInteger(Graph G, Graph D)
           
 
Method Summary
 void resolution()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INFINI

public double INFINI

phiMap

public HashMap phiMap

varpMap

public HashMap varpMap

xMap

public HashMap xMap
Constructor Detail

NDCplexInteger

public NDCplexInteger(Graph G,
                      Graph D)
Method Detail

resolution

public void resolution()