2007-06-11 13:01:04 +01:00
|
|
|
/*
|
|
|
|
* Scyther : An automatic verifier for security protocols.
|
2013-10-05 23:56:12 +01:00
|
|
|
* Copyright (C) 2007-2013 Cas Cremers
|
2007-06-11 13:01:04 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2004-04-23 11:58:43 +01:00
|
|
|
#ifndef MGU
|
|
|
|
#define MGU
|
|
|
|
|
2004-07-24 20:07:29 +01:00
|
|
|
#include "term.h"
|
|
|
|
#include "termlist.h"
|
2004-04-23 11:58:43 +01:00
|
|
|
|
2004-05-15 17:43:20 +01:00
|
|
|
//! A special constant do denote failure.
|
|
|
|
/**
|
|
|
|
* \c NULL already denotes equality, so an extra signal is needed to
|
|
|
|
* denote that a unification fails.
|
|
|
|
* \todo Find a portable solution for this \c MGUFAIL constant:
|
|
|
|
* maybe a pointer to some special constant.
|
|
|
|
*/
|
2004-04-23 11:58:43 +01:00
|
|
|
#define MGUFAIL (Termlist) -1
|
|
|
|
|
2004-08-11 15:09:12 +01:00
|
|
|
void termlistSubstReset (Termlist tl);
|
2007-02-01 12:18:38 +00:00
|
|
|
int checkRoletermMatch (const Term t1, const Term t2, const Termlist tl);
|
2004-04-23 11:58:43 +01:00
|
|
|
|
2006-02-27 16:08:17 +00:00
|
|
|
// The new iteration methods
|
2018-11-05 13:55:06 +00:00
|
|
|
int unify (Term t1, Term t2, Termlist tl, int (*callback) (), void *state);
|
2006-02-27 16:08:17 +00:00
|
|
|
int
|
|
|
|
subtermUnify (Term tbig, Term tsmall, Termlist tl, Termlist keylist,
|
2018-12-24 13:29:02 +00:00
|
|
|
int (*callback) (Termlist, Termlist, void *), void *state);
|
2007-01-29 13:15:35 +00:00
|
|
|
|
2004-04-23 11:58:43 +01:00
|
|
|
#endif
|