m1.chocobarlite/src/conf/ChocoConfig.java

48 lines
928 B
Java
Raw Normal View History

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