Model
Class Model

java.lang.Object
  |
  +--Model.Model

public abstract class Model
extends java.lang.Object

All Topology generation in BRITE is governed by a Model Class. A Model uses its knowledge to build a representative graph. Class Model is the base abstract class from which all models used by BRITE must be derived.


Constructor Summary
Model()
           
 
Method Summary
abstract  Graph.Graph Generate()
           
 int getConnLocal()
           
 int getGrowthType()
           
 int getM()
           
 int getN()
           
 int getNodePlacement()
           
 int getPrefModel()
           
 void setRandomGenManager(Util.RandomGenManager rm)
           
abstract  java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Model

public Model()
Method Detail

setRandomGenManager

public void setRandomGenManager(Util.RandomGenManager rm)

getNodePlacement

public int getNodePlacement()

getGrowthType

public int getGrowthType()

getPrefModel

public int getPrefModel()

getConnLocal

public int getConnLocal()

getN

public int getN()

getM

public int getM()

Generate

public abstract Graph.Graph Generate()

toString

public abstract java.lang.String toString()
Overrides:
toString in class java.lang.Object