- Huge code documentation effort.

This commit is contained in:
ccremers
2006-01-02 21:06:08 +00:00
parent 6676266f4a
commit da75862d82
24 changed files with 127 additions and 94 deletions

View File

@@ -13,13 +13,17 @@ int isTriviallyKnownAtArachne (const System sys, const Term t, const int run,
int isTriviallyKnownAfterArachne (const System sys, const Term t,
const int run, const int index);
//! Goal structure
/**
* Signals a read event or claim event to which a term has to be bound.
*/
struct goalstruct
{
int run;
int index;
Roledef rd;
int run; //!< run of goal
int index; //!< index of goal in the run
Roledef rd; //!< pointer to the role definition
};
typedef struct goalstruct Goal;
typedef struct goalstruct Goal; //!< pointer to goal structure
#endif