- More refactoring to improve the code.

This commit is contained in:
ccremers
2006-01-02 20:18:47 +00:00
parent e6505a72a3
commit 6676266f4a
8 changed files with 313 additions and 356 deletions

View File

@@ -12,8 +12,14 @@ 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);
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);
struct goalstruct
{
int run;
int index;
Roledef rd;
};
typedef struct goalstruct Goal;
#endif