m1.chocobarlite/src/conf/ChocoConfig.java
2009-05-01 08:07:06 +00:00

48 lines
928 B
Java

package conf;
/**
* Classe pour la configuration
*/
public final class ChocoConfig
{
/*
* Cannot Instantiate it
*/
private ChocoConfig() {}
/**
* Définit la taille de la ChocoBar.
* On utilise 8 x 6 pour les benchmark
*/
public static int size;
public static int height;
/**
* Définit le style de ChocoBar à utiliser.
* Par exemple :
* - cbl ( avec une liste de BreakPoints )
* - combi ( à base de combinaisons )
*/
public static String chocoBarStyle = "combi";
/**
* Définit la classe de ChocoBar à utiliser.
* Par exemple :
* - cbl.ChocoBar
* - combi.ChocoBarLong
* - combi.ChocoBarBigInt
* - combi.ChocoBarArray
*/
public static String chocoBarModel = "combi.ChocoBarLong";
/**
* Définit la classe de EdgeModel à utiliser.
* - EdgeBigIntModel
* - EdgeBitSetModel
* - EdgeListModel
* - EdgeMatrixModel
*/
public static String edgeModel = "EdgeBigIntModel";
}