737475767778798081
return new TabularDF(dom); } public static TabularCPD createCPF(String name, String[] labels) { LabelDomain dom = new LabelDomain(name, labels); return new TabularCPD(dom, null); }
798081828384858687
return new TabularCPD(dom, null); } public static TabularDF createDF(String name, String[] labels) { LabelDomain dom = new LabelDomain(name, labels); return new TabularDF(dom); }
373374375376377378379380381382383
noisyT.setDomain(dom); } } public void setLabelDomain(String[] labels) { DiscreteDomain dom = new LabelDomain(this.name, labels); function.setDomain(dom); if (noisyT != null) { noisyT.setDomain(dom); }