https://github.com/epiqc/ScaffCC
Raw File
Tip revision: 861c8b60980b0f4d36b101b45346a2e64b0fa390 authored by Pranav Gokhale on 05 February 2018, 05:29:11 UTC
update documentation and release notes
Tip revision: 861c8b6
README.md
# RKQCVerifier

RKQCVerifier is a tool that helps verify the correctness of RKQC applications.
In this folder, there are three files: example.scaffold, prebuilt.c, and rkqc_verify.py.

- example.scaffold is a scaffold file that we use it to demonstrate how this tool works.
- prebuilt.c is a set of premitive functions.
- rkqc_verifyy.py is used to translate scaffold file into c file, and it also automatically uses g++ compiler to compile it into a classical executable file. This tool will generate an executable file called rkqc_executable. You can verify the correctness by simply running this executable file.

### Usage:

```sh
$ python rkqc_verify.py example.scaffold
```
back to top