163164165166167168169170171172173
this.function = new TabularCPD(dom, null); break; case noisymax: this.function = new TabularCPD(dom, null); this.noisyT = new NoisyT(dom, null); break; case deterministic: this.function = new TabularDetF(dom, null); break;
200201202203204205206207208209210
this.function = FunctionTableFactory.createDefaultDetF(name); break; case noisymax: this.function = FunctionTableFactory.createDefaultCPF(name); this.noisyT = new NoisyT((DiscreteDomain) this.getDomain(), null); break; case utility: this.function = new TabularUF(name, null); break;