2004-08-11 10:51:17 +01:00
|
|
|
#ifndef ARACHNE
|
|
|
|
#define ARACHNE
|
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
|
2004-08-11 12:22:20 +01:00
|
|
|
void arachneInit (const System sys);
|
2004-08-11 15:09:12 +01:00
|
|
|
void arachneDone ();
|
|
|
|
int arachne ();
|
2005-05-01 14:32:50 +01:00
|
|
|
int get_semitrace_length ();
|
2005-05-19 15:43:32 +01:00
|
|
|
void indentPrint ();
|
2005-08-12 13:13:50 +01:00
|
|
|
int isTriviallyKnownAtArachne (const System sys, const Term t, const int run,
|
|
|
|
const int index);
|
|
|
|
int isTriviallyKnownAfterArachne (const System sys, const Term t,
|
|
|
|
const int run, const int index);
|
2005-12-27 11:50:46 +00:00
|
|
|
int ranks_to_lines (int *ranks, const int nodes);
|
|
|
|
void iterate_incoming_arrows (void (*func) (), const int run, const int ev);
|
|
|
|
void iterate_outgoing_arrows (void (*func) (), const int run, const int ev);
|
2004-08-11 10:51:17 +01:00
|
|
|
|
|
|
|
#endif
|