17 lines
261 B
C
17 lines
261 B
C
|
/**
|
||
|
*@file arachne.c
|
||
|
*
|
||
|
* Introduces a method for proofs akin to the Athena modelchecker
|
||
|
* http://www.ece.cmu.edu/~dawnsong/athena/
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "system.h"
|
||
|
#include "arachne.h"
|
||
|
|
||
|
//! Main recursive procedure for Arachne
|
||
|
int
|
||
|
arachne (const System sys)
|
||
|
{
|
||
|
}
|