From 1174486576b09b545bf035b91ca383e1c45863ba Mon Sep 17 00:00:00 2001 From: Tiago Gomes Date: Sat, 15 Dec 2012 00:16:06 +0000 Subject: [PATCH] VE??? --- packages/CLPBN/clpbn.yap | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/CLPBN/clpbn.yap b/packages/CLPBN/clpbn.yap index a97e547b7..7737d1787 100644 --- a/packages/CLPBN/clpbn.yap +++ b/packages/CLPBN/clpbn.yap @@ -589,17 +589,17 @@ clpbn_run_solver(pcg, LVs, LPs, State) :- % % This is a routine to start a solver, called by the learning procedures (ie, em). % -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, VE, bdd) :- - init_bdd_ground_solver(QueryKeys, AllKeys, Factors, Evidence, VE). +pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State, bdd) :- + init_bdd_ground_solver(QueryKeys, AllKeys, Factors, Evidence, State). -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, VE, ve) :- - init_ve_ground_solver(QueryKeys, AllKeys, Factors, Evidence, VE). +pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State, ve) :- + init_ve_ground_solver(QueryKeys, AllKeys, Factors, Evidence, State). -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, VE, bp) :- - init_horus_ground_solver(QueryKeys, AllKeys, Factors, Evidence, VE). +pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State, bp) :- + init_horus_ground_solver(QueryKeys, AllKeys, Factors, Evidence, State). -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, VE, hve) :- - init_horus_ground_solver(QueryKeys, AllKeys, Factors, Evidence, VE). +pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State, hve) :- + init_horus_ground_solver(QueryKeys, AllKeys, Factors, Evidence, State). pfl_run_solver(LVs, LPs, State, ve) :- run_ve_ground_solver(LVs, LPs, State).