package es.tid.pce.computingEngine;
/**
* First basic version of the Algorithm Rule
* Only objective function and if SVEC is present
* @author ogondio
*
*/
public class AlgorithmRule {
public int of=0;
//svec=0 NO SVEC
//svec=1 SVEC present
//svec=2 DIVERSE
public boolean svec=false;
//public int switchLayer;
// boolean gmpls;
// public int lspEncodingType;
// public int switchingType;
}