- Added some doxygen documentation.
This commit is contained in:
parent
03c19a4774
commit
ffecc1a1ac
@ -1,3 +1,10 @@
|
||||
/*!\file match_basic.c
|
||||
*\brief Implements the match function.
|
||||
*
|
||||
* The match function here is integrated here with an enabled() function.
|
||||
* It is also the basic match, so not suited for Constraint Logic Programming.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "memory.h"
|
||||
|
@ -1,3 +1,12 @@
|
||||
/*!\file match_clp.c
|
||||
*\brief Implements the match function.
|
||||
*
|
||||
* The match function here is integrated here with an enabled() function.
|
||||
* It is the constraint-logic based match.
|
||||
*
|
||||
*\warning Some code is obsolete, as there hasn't been any development on the CL version for a while.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "match_clp.h"
|
||||
|
@ -1,3 +1,9 @@
|
||||
/*!\file modelchecker.c
|
||||
* \brief The main procedures guiding the (optimized) traversal of the state space.
|
||||
*
|
||||
* This file implements various traversal methods through the state space.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
Loading…
Reference in New Issue
Block a user