本文整理汇总了Java中dr.inference.operators.SimpleMCMCOperator类的典型用法代码示例。如果您正苦于以下问题:Java SimpleMCMCOperator类的具体用法?Java SimpleMCMCOperator怎么用?Java SimpleMCMCOperator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SimpleMCMCOperator类属于dr.inference.operators包,在下文中一共展示了SimpleMCMCOperator类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseXMLObject
import dr.inference.operators.SimpleMCMCOperator; //导入依赖的package包/类
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
final double weight = xo.getDoubleAttribute(WEIGHT);
JointGibbsOperator operator = new JointGibbsOperator(weight);
for (int i = 0; i < xo.getChildCount(); i++) {
if (xo.getChild(i) instanceof GibbsOperator)
operator.addOperator((SimpleMCMCOperator) xo.getChild(i));
else
throw new RuntimeException("Operator list must consist only of GibbsOperators");
}
return operator;
}
示例2: parseXMLObject
import dr.inference.operators.SimpleMCMCOperator; //导入依赖的package包/类
@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
for (int i = 0; i < xo.getChildCount(); ++i) {
SimpleMCMCOperator operator = (SimpleMCMCOperator) xo.getChild(i);
operator.doOperation();
}
return null;
}
示例3: parseXMLObject
import dr.inference.operators.SimpleMCMCOperator; //导入依赖的package包/类
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
final double weight = xo.getDoubleAttribute(WEIGHT);
final double targetProb = xo.getAttribute(TARGET_ACCEPTANCE, 0.2);
if (targetProb <= 0.0 || targetProb >= 1.0)
throw new RuntimeException("Target acceptance probability must be between 0.0 and 1.0");
JointOperator operator = new JointOperator(weight, targetProb);
for (int i = 0; i < xo.getChildCount(); i++) {
operator.addOperator((SimpleMCMCOperator) xo.getChild(i));
}
return operator;
}
示例4: getSyntaxRules
import dr.inference.operators.SimpleMCMCOperator; //导入依赖的package包/类
@Override
public XMLSyntaxRule[] getSyntaxRules() {
return new XMLSyntaxRule[]{
new ElementRule(SimpleMCMCOperator.class, 1, Integer.MAX_VALUE),
};
}