- From this version onwards, Scyther no longer supports the modelchecker

method. A big cleanup has been started, but is not finished yet, so
  minor artefacts might still remain. These are to be cleaned up later.
This commit is contained in:
ccremers
2006-03-08 13:58:46 +00:00
parent 2830c8e8ff
commit 5487d3ae90
46 changed files with 127 additions and 5525 deletions

View File

@@ -8,7 +8,6 @@
#include "system.h"
#include "binding.h"
#include "warshall.h"
#include "memory.h"
#include "debug.h"
#include "term.h"
#include "termmap.h"
@@ -34,7 +33,7 @@ binding_create (Term term, int run_to, int ev_to)
{
Binding b;
b = memAlloc (sizeof (struct binding));
b = malloc (sizeof (struct binding));
b->done = false;
b->blocked = false;
b->run_from = -1;
@@ -54,7 +53,7 @@ binding_destroy (Binding b)
{
goal_unbind (b);
}
memFree (b, sizeof (struct binding));
free (b);
}
/*