scyther/src/mgu.h

45 lines
1.5 KiB
C
Raw Normal View History

/*
* Scyther : An automatic verifier for security protocols.
2013-10-05 23:56:12 +01:00
* Copyright (C) 2007-2013 Cas Cremers
*
* 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
#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
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
// The new iteration methods
2018-11-05 13:55:06 +00:00
int unify (Term t1, Term t2, Termlist tl, int (*callback) (), void *state);
int
subtermUnify (Term tbig, Term tsmall, Termlist tl, Termlist keylist,
2018-12-24 13:53:20 +00:00
int (*callback) (), void *state);
2004-04-23 11:58:43 +01:00
#endif