scyther/src/binding.h

52 lines
944 B
C
Raw Normal View History

2004-08-15 12:55:22 +01:00
#ifndef BINDINGS
#define BINDINGS
2004-08-17 12:03:18 +01:00
#include "term.h"
#include "termmap.h"
2004-08-17 12:03:18 +01:00
#include "system.h"
2004-08-17 16:52:52 +01:00
/*
* Idea is the ev_from *has to* precede the ev_to
*/
struct binding
{
int done; //!< Iff true, it is bound
2004-08-17 16:52:52 +01:00
int run_from;
int ev_from;
int run_to;
int ev_to;
int *graph;
int nodes;
Term term;
int level;
2004-08-17 16:52:52 +01:00
};
typedef struct binding *Binding;
2004-08-15 12:55:22 +01:00
void bindingInit (const System mysys);
void bindingDone ();
int node_count ();
int node_number (int run, int ev);
__inline__ int graph_nodes (const int nodes, const int run1, const int ev1,
const int run2, const int ev2);
void goal_graph_create ();
2004-08-17 16:52:52 +01:00
int binding_print (Binding b);
2004-08-15 12:55:22 +01:00
int goal_add (Term term, const int run, const int ev, const int level);
void goal_remove_last (int n);
2004-08-17 16:52:52 +01:00
int goal_bind (const Binding b, const int run, const int ev);
void goal_unbind (const Binding b);
int labels_ordered (Termmap runs, Termlist labels);
2004-08-17 16:52:52 +01:00
int bindings_c_minimal ();
2004-08-15 12:55:22 +01:00
#endif