本文整理汇总了Java中net.sf.javabdd.JFactory.init方法的典型用法代码示例。如果您正苦于以下问题:Java JFactory.init方法的具体用法?Java JFactory.init怎么用?Java JFactory.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.sf.javabdd.JFactory
的用法示例。
在下文中一共展示了JFactory.init方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: JBDDProvider
import net.sf.javabdd.JFactory; //导入方法依赖的package包/类
/**
* Constructs a {@link JBDDProvider} with the {@link Type} of the BDD library to use, a given number of variables,
* the growth rate of the number of variables, and the initial number of nodes.
*
* @param type
* the type of the BDD library
* @param vars
* the number of variables
* @param variableGrowthFactor
* the factor by which to extend the number of variables if required
* @param initialNumberofNodes
* the initial number of nodes reserved in the BDD factory
*/
public JBDDProvider(Type type, int vars, int variableGrowthFactor, int initialNumberofNodes) {
switch (type) {
case JDD:
factory = JDDFactory.init(initialNumberofNodes, initialNumberofNodes);
break;
default:
factory = JFactory.init(initialNumberofNodes, initialNumberofNodes);
factory.autoReorder(BDDFactory.REORDER_SIFT);
}
factory.setVarNum(vars);
this.vars = vars;
this.variableGrowthFactor = variableGrowthFactor;
}
示例2: SequenceBasedAndGateDecomposer
import net.sf.javabdd.JFactory; //导入方法依赖的package包/类
public SequenceBasedAndGateDecomposer(StateGraph stategraph, Netlist netlist) {
this.netlist = netlist;
this.factory = JFactory.init(1000, 250);
this.sigidmap = new HashMap<>();
this.quasimap = HashBiMap.create();
this.origsg = stategraph;
this.sghelper = new AndDecoSGHelper(stategraph.getSTG().getFile());
}
示例3: execute
import net.sf.javabdd.JFactory; //导入方法依赖的package包/类
/**
* Calls the logic synthesis flow
*
* @return Status code:
* 0: Everything okay
* 1: Something failed
*/
private static int execute() {
BDDFactory storage = JFactory.init(netlistNodesize, netlistNodesize / 4);
storage.setCacheRatio(4f);
TechLibrary tech = readTechnology(options.getTechnology(), config.defaultTech, storage);
if(tech == null) {
logger.error("No technology found");
return 1;
}
Flow flow = new Flow(options, tech, storage);
return flow.execute();
}
示例4: ReasoningWithBDD
import net.sf.javabdd.JFactory; //导入方法依赖的package包/类
public ReasoningWithBDD(VariableOrderingHeuristic voHeuristic, int nodeNum, int cacheSize, long maxBuildingTime, ReorderMethod reorderMethod, String orderingFormulasStrategy) {
super();
this.variableOrderingHeuristic = voHeuristic;
this.nodeNum = nodeNum;
this.cacheSize = cacheSize;
this.reorderMethod = reorderMethod;
states = new LinkedHashMap<String,ReasoningWithBDDState>();
this.maxBuildingTime = maxBuildingTime;
this.heuristicRunningTime = -1;
this.bddBuildingTime = -1;
this.orderingFormulasStrategy = orderingFormulasStrategy;
bddFactory = JFactory.init(nodeNum,cacheSize);
}
示例5: reset
import net.sf.javabdd.JFactory; //导入方法依赖的package包/类
@Override
public void reset() {
variables = new HashMap<String, BDD>();
featuresMap = new HashMap<String, GenericFeature>();
vars = new HashMap<Integer, String>();
subtrees = new ArrayList<BDD>();
factory = JFactory.init(1000000, 10000); // This can be optimized taking
numvar = 1; // into account the size of
}
示例6: setUp
import net.sf.javabdd.JFactory; //导入方法依赖的package包/类
@Before
public void setUp() {
factory = JavaBDDAdapterFactory.init(100, 10);
factory.setVarNum(10);
jfactory = JFactory.init(100, 10);
jfactory.setVarNum(10);
}