Improved goal selection heuristic and trivial goal skipping.

After the various changes, we were no longer correctly skipping terms like pk(IV#0),
even though it is a trivial goal. This patch fixes the issue.
This commit is contained in:
Cas Cremers 2012-06-12 21:46:51 +02:00
parent 61c451d7f8
commit d44e131f63

View File

@ -35,18 +35,49 @@
#include "hidelevel.h"
#include "arachne.h"
#include "error.h"
#include "knowledge.h"
//! Trivial goal detection
/**
* Detect goals that we do not need to solve because they can be trivially solved.
*/
int
isTrivialGoal (const System sys, const Term t)
{
if (isTermVariable (t))
{
return true;
}
else
{
Term f;
f = getTermFunction (t);
if (f != NULL)
{
if (isKnowledgePublicFunction (sys->know, f))
{
return isTrivialGoal (sys, TermOp (t));
}
}
}
return false;
}
//! Check whether a binding (goal) is selectable
int
is_goal_selectable (const Binding b)
is_goal_selectable (const System sys, const Binding b)
{
if (b != NULL)
{
if ((!b->blocked) && (!b->done))
{
if (!isTrivialGoal (sys, b->term))
{
return true;
}
}
}
return false;
}
@ -64,7 +95,7 @@ count_selectable_goals (const System sys)
Binding b;
b = (Binding) bl->data;
if (is_goal_selectable (b))
if (is_goal_selectable (sys, b))
{
n++;
}
@ -78,9 +109,9 @@ count_selectable_goals (const System sys)
* The return list entry is either NULL, or a selectable goal.
*/
List
first_selectable_goal (List bl)
first_selectable_goal (const System sys, List bl)
{
while (bl != NULL && !is_goal_selectable ((Binding) bl->data))
while (bl != NULL && !is_goal_selectable (sys, (Binding) bl->data))
{
bl = bl->next;
}
@ -393,9 +424,7 @@ select_goal_masked (const System sys)
b = (Binding) bl->data;
// Only if not done and not blocked
if (is_goal_selectable (b))
{
if (!isTermVariable (b->term))
if (is_goal_selectable (sys, b))
{
float w;
@ -419,7 +448,6 @@ select_goal_masked (const System sys)
eprintf ("<%.2f>", w);
}
}
}
bl = bl->next;
}
if (switches.output == PROOF)
@ -453,7 +481,7 @@ select_goal_random (const System sys)
bl = sys->bindings;
while (choice >= 0)
{
bl = first_selectable_goal (bl);
bl = first_selectable_goal (sys, bl);
if (bl == NULL)
{
error ("Random chooser selected a NULL goal.");