2006-01-02 19:19:23 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*@file heuristic.c
|
|
|
|
*
|
|
|
|
* Heuristics code for Arachne method
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <float.h>
|
|
|
|
|
|
|
|
#include "binding.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "specialterm.h"
|
|
|
|
#include "switches.h"
|
2006-02-22 15:48:58 +00:00
|
|
|
#include "hidelevel.h"
|
2006-01-02 19:19:23 +00:00
|
|
|
|
|
|
|
//! Check whether a binding (goal) is selectable
|
|
|
|
int
|
|
|
|
is_goal_selectable (const Binding b)
|
|
|
|
{
|
|
|
|
if (b != NULL)
|
|
|
|
{
|
|
|
|
if (!b->blocked && !b->done)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Count selectable goals
|
|
|
|
int
|
|
|
|
count_selectable_goals (const System sys)
|
|
|
|
{
|
|
|
|
List bl;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
bl = sys->bindings;
|
|
|
|
while (bl != NULL)
|
|
|
|
{
|
|
|
|
Binding b;
|
|
|
|
|
|
|
|
b = (Binding) bl->data;
|
|
|
|
if (is_goal_selectable (b))
|
|
|
|
{
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
bl = bl->next;
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Return first selectable goal in the list
|
|
|
|
/**
|
|
|
|
* The return list entry is either NULL, or a selectable goal.
|
|
|
|
*/
|
|
|
|
List
|
|
|
|
first_selectable_goal (List bl)
|
|
|
|
{
|
|
|
|
while (bl != NULL && !is_goal_selectable ((Binding) bl->data))
|
|
|
|
{
|
|
|
|
bl = bl->next;
|
|
|
|
}
|
|
|
|
return bl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Give an indication of the amount of consequences binding a term has
|
|
|
|
/**
|
|
|
|
* Given a term, returns a float. 0: maximum consequences, 1: no consequences.
|
|
|
|
*/
|
|
|
|
float
|
|
|
|
termBindConsequences (const System sys, Term t)
|
|
|
|
{
|
|
|
|
Termlist openVariables;
|
|
|
|
|
|
|
|
openVariables = termlistAddVariables (NULL, t);
|
|
|
|
if (openVariables == NULL)
|
|
|
|
{
|
|
|
|
// No variables, no consequences
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// For each run event in the semitrace, check whether it contains any
|
|
|
|
// of the open variables.
|
|
|
|
int totalCount;
|
|
|
|
int affectedCount;
|
|
|
|
int run;
|
|
|
|
|
|
|
|
totalCount = 0;
|
|
|
|
affectedCount = 0;
|
|
|
|
run = 0;
|
|
|
|
while (run < sys->maxruns)
|
|
|
|
{
|
|
|
|
Roledef rd;
|
|
|
|
int step;
|
|
|
|
|
|
|
|
rd = sys->runs[run].start;
|
|
|
|
step = 0;
|
2006-01-02 21:06:08 +00:00
|
|
|
while (step < sys->runs[run].height)
|
2006-01-02 19:19:23 +00:00
|
|
|
{
|
|
|
|
Termlist tl;
|
|
|
|
|
|
|
|
tl = openVariables;
|
|
|
|
while (tl != NULL)
|
|
|
|
{
|
|
|
|
if ((rd->type == READ || rd->type == SEND)
|
|
|
|
&& termSubTerm (rd->message, tl->term))
|
|
|
|
{
|
|
|
|
// This run event contains the open variable
|
|
|
|
affectedCount++;
|
|
|
|
tl = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tl = tl->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
totalCount++;
|
|
|
|
step++;
|
|
|
|
rd = rd->next;
|
|
|
|
}
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
|
|
|
|
termlistDelete (openVariables);
|
|
|
|
if (totalCount > 0)
|
|
|
|
{
|
|
|
|
// Valid computation
|
|
|
|
return (float) (totalCount - affectedCount) / totalCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No consequences, ensure no division by 0
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Determine whether a term is an open nonce variable
|
|
|
|
/**
|
|
|
|
* Does not explore subterms
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
isOpenNonceVar (Term t)
|
|
|
|
{
|
|
|
|
t = deVar (t);
|
|
|
|
if (realTermVariable (t))
|
|
|
|
{
|
|
|
|
return inTermlist (t->stype, TERM_Nonce);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Count unique open variables in term
|
|
|
|
/**
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
count_open_variables (const Term t)
|
|
|
|
{
|
|
|
|
Termlist tl;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
tl = NULL;
|
|
|
|
termlistAddVariables (tl, t);
|
|
|
|
n = 0;
|
|
|
|
while (tl != NULL)
|
|
|
|
{
|
|
|
|
if (!inTermlist (tl->next, t))
|
|
|
|
{
|
|
|
|
if (isOpenNonceVar (t))
|
|
|
|
{
|
|
|
|
n = n + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tl = tl->next;
|
|
|
|
}
|
|
|
|
termlistDelete (tl);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//! Athena-like factor
|
|
|
|
/**
|
|
|
|
* Lower is better (more nonce variables)
|
|
|
|
*/
|
|
|
|
float
|
|
|
|
term_noncevariables_level (const Term t)
|
|
|
|
{
|
|
|
|
int onv;
|
|
|
|
const int enough = 2;
|
|
|
|
|
|
|
|
onv = count_open_variables (t);
|
|
|
|
if (onv >= enough)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1 - (onv / enough);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-22 15:48:58 +00:00
|
|
|
//! Determine weight based on hidelevel
|
|
|
|
float
|
2006-02-23 15:03:43 +00:00
|
|
|
weighHidelevel (const System sys, const Term t, const float massknow,
|
|
|
|
const float massprot)
|
2006-02-22 15:48:58 +00:00
|
|
|
{
|
|
|
|
unsigned int hl;
|
|
|
|
|
|
|
|
switch (hidelevelFlag (sys, t))
|
|
|
|
{
|
|
|
|
case HLFLAG_NONE:
|
|
|
|
return 0;
|
|
|
|
case HLFLAG_KNOW:
|
2006-02-23 15:03:43 +00:00
|
|
|
return massknow;
|
2006-02-22 15:48:58 +00:00
|
|
|
case HLFLAG_PROT:
|
2006-02-23 15:03:43 +00:00
|
|
|
return massprot;
|
2006-02-22 15:48:58 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! newkeylevel (weighted)
|
|
|
|
int
|
|
|
|
newkeylevel (const int level)
|
|
|
|
{
|
|
|
|
// keylevel is from { -1,0,1 } where -1 means delay
|
|
|
|
if (level == 1)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-02-23 15:03:43 +00:00
|
|
|
//! Determine the weight of a given goal
|
2006-01-02 19:19:23 +00:00
|
|
|
/**
|
2006-02-23 15:03:43 +00:00
|
|
|
* 0 to ... (lower is better)
|
2006-01-02 19:19:23 +00:00
|
|
|
*
|
2006-02-23 15:03:43 +00:00
|
|
|
* --heuristic has two distint interpretations. If it is 0 or greater, it a
|
2006-01-02 19:19:23 +00:00
|
|
|
* selection mask. If it is smaller than 0, it is some special tactic.
|
|
|
|
*
|
|
|
|
* selection masks for --select-goal
|
|
|
|
* 1: constrain level of term
|
|
|
|
* 2: key or not
|
|
|
|
* 4: consequences determination
|
|
|
|
* 8: select also single variables (that are not role variables)
|
|
|
|
* 16: single variables are better
|
2006-02-22 15:48:58 +00:00
|
|
|
* 32: incorporate keylevel information
|
2006-01-02 19:19:23 +00:00
|
|
|
*
|
|
|
|
* special tactics for --select-goal
|
|
|
|
* -1: random goal selection
|
|
|
|
*
|
|
|
|
*/
|
2006-02-23 15:03:43 +00:00
|
|
|
float
|
|
|
|
computeGoalWeight (const System sys, const Binding b)
|
|
|
|
{
|
|
|
|
float w;
|
|
|
|
int smode;
|
|
|
|
Term t;
|
|
|
|
|
|
|
|
void erode (const float deltaw)
|
|
|
|
{
|
|
|
|
if (smode & 1)
|
|
|
|
{
|
|
|
|
w = w + deltaw;
|
|
|
|
}
|
|
|
|
smode = smode / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Total weight
|
|
|
|
w = 0;
|
|
|
|
// We will shift this mode variable
|
|
|
|
smode = switches.heuristic;
|
|
|
|
t = b->term;
|
|
|
|
|
|
|
|
// Determine buf_constrain levels
|
|
|
|
// Bit 0: 1 use hidelevel
|
|
|
|
erode (2 * weighHidelevel (sys, t, 0.5, 0.5));
|
|
|
|
// Bit 1: 2 key level (inverted)
|
|
|
|
erode (0.5 * (1 - b->level));
|
|
|
|
// Bit 2: 4 constrain level
|
|
|
|
erode (term_constrain_level (t));
|
|
|
|
// Bit 3: 8 nonce variables level (Cf. what I think is in Athena)
|
|
|
|
erode (term_noncevariables_level (t));
|
|
|
|
|
|
|
|
// Define legal range
|
|
|
|
if (smode > 0)
|
|
|
|
error ("--heuristic mode %i is illegal", switches.heuristic);
|
|
|
|
|
|
|
|
// Return total weight
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Goal selection
|
|
|
|
/**
|
|
|
|
* Selects the most constrained goal.
|
|
|
|
*
|
|
|
|
* Because the list starts with the newest terms, and we use <= (as opposed to <), we
|
|
|
|
* ensure that for goals with equal constraint levels, we select the oldest one.
|
|
|
|
*
|
|
|
|
*/
|
2006-01-02 19:19:23 +00:00
|
|
|
Binding
|
|
|
|
select_goal_masked (const System sys)
|
|
|
|
{
|
|
|
|
List bl;
|
|
|
|
Binding best;
|
2006-02-23 15:03:43 +00:00
|
|
|
float best_weight;
|
2006-01-02 19:19:23 +00:00
|
|
|
|
|
|
|
// Find the most constrained goal
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Listing open goals that might be chosen: ");
|
|
|
|
}
|
2006-02-23 15:03:43 +00:00
|
|
|
best_weight = FLT_MAX;
|
2006-01-02 19:19:23 +00:00
|
|
|
best = NULL;
|
2006-02-23 15:03:43 +00:00
|
|
|
bl = sys->bindings;
|
2006-01-02 19:19:23 +00:00
|
|
|
while (bl != NULL)
|
|
|
|
{
|
|
|
|
Binding b;
|
|
|
|
|
|
|
|
b = (Binding) bl->data;
|
|
|
|
|
|
|
|
// Only if not done and not blocked
|
|
|
|
if (is_goal_selectable (b))
|
|
|
|
{
|
2006-02-23 15:03:43 +00:00
|
|
|
if (!isTermVariable (b->term))
|
2006-01-02 19:19:23 +00:00
|
|
|
{
|
2006-02-23 15:03:43 +00:00
|
|
|
float w;
|
2006-01-02 19:19:23 +00:00
|
|
|
|
2006-02-23 15:03:43 +00:00
|
|
|
w = computeGoalWeight (sys, b);
|
2006-01-02 19:19:23 +00:00
|
|
|
|
2006-02-23 15:03:43 +00:00
|
|
|
// Spacing between output
|
2006-01-02 19:19:23 +00:00
|
|
|
if (switches.output == PROOF && best != NULL)
|
|
|
|
eprintf (", ");
|
|
|
|
|
2006-02-23 15:03:43 +00:00
|
|
|
// Better alternative?
|
|
|
|
if (w <= best_weight)
|
2006-01-02 19:19:23 +00:00
|
|
|
{
|
2006-02-23 15:03:43 +00:00
|
|
|
best_weight = w;
|
2006-01-02 19:19:23 +00:00
|
|
|
best = b;
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
eprintf ("*");
|
|
|
|
}
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
termPrint (b->term);
|
2006-02-23 15:03:43 +00:00
|
|
|
eprintf ("<%.2f>", w);
|
2006-01-02 19:19:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bl = bl->next;
|
|
|
|
}
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
if (best == NULL)
|
|
|
|
eprintf ("none");
|
|
|
|
eprintf ("\n");
|
|
|
|
}
|
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Goal selection special case -1: random
|
|
|
|
/**
|
|
|
|
* Simply picks an open goal randomly. Has to be careful to skip singular stuff etc.
|
|
|
|
*/
|
|
|
|
Binding
|
|
|
|
select_goal_random (const System sys)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = count_selectable_goals (sys);
|
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
int choice;
|
|
|
|
List bl;
|
|
|
|
|
|
|
|
// Choose a random goal between 0 and n
|
|
|
|
choice = rand () % n;
|
|
|
|
|
|
|
|
// Fetch it
|
|
|
|
bl = sys->bindings;
|
|
|
|
while (choice >= 0)
|
|
|
|
{
|
|
|
|
bl = first_selectable_goal (bl);
|
|
|
|
if (bl == NULL)
|
|
|
|
{
|
|
|
|
error ("Random chooser selected a NULL goal.");
|
|
|
|
}
|
|
|
|
choice--;
|
|
|
|
}
|
|
|
|
return (Binding) bl->data;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-23 10:44:44 +00:00
|
|
|
return (Binding) NULL;
|
2006-01-02 19:19:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Goal selection function, generic
|
|
|
|
Binding
|
|
|
|
select_goal (const System sys)
|
|
|
|
{
|
2006-02-23 15:03:43 +00:00
|
|
|
if (switches.heuristic >= 0)
|
2006-01-02 19:19:23 +00:00
|
|
|
{
|
|
|
|
// Masked
|
|
|
|
return select_goal_masked (sys);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Special cases
|
2006-02-23 15:03:43 +00:00
|
|
|
switch (switches.heuristic)
|
2006-01-02 19:19:23 +00:00
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
return select_goal_random (sys);
|
|
|
|
}
|
|
|
|
error ("Unknown value (<0) for --goal-select.");
|
|
|
|
}
|
2006-02-23 10:44:44 +00:00
|
|
|
return (Binding) NULL;
|
2006-01-02 19:19:23 +00:00
|
|
|
}
|