Minor refactoring.

This commit is contained in:
Cas Cremers 2018-10-19 20:17:50 -04:00
parent 45b2d97883
commit 024a76a32b

View File

@ -1375,6 +1375,14 @@ bind_goal_new_intruder_run (const Binding b)
return flag; return flag;
} }
//! Dummy helper function for iterator; abort if sub-unification found
int
test_sub_unification (Termlist substlist, Termlist keylist)
{
// A unification exists; return the signal
return false;
}
//! Bind a regular goal //! Bind a regular goal
/** /**
* Problem child. Valgrind does not like it. * Problem child. Valgrind does not like it.
@ -1390,12 +1398,6 @@ bind_goal_regular_run (const Binding b)
*/ */
int bind_this_role_send (Protocol p, Role r, Roledef rd, int index) int bind_this_role_send (Protocol p, Role r, Roledef rd, int index)
{ {
int test_sub_unification (Termlist substlist, Termlist keylist)
{
// A unification exists; return the signal
return false;
}
if (p == INTRUDER) if (p == INTRUDER)
{ {
// No intruder roles here // No intruder roles here