summaryrefslogtreecommitdiff
path: root/examples/README.md
blob: 18834719e5be877b410199535e961f176ef0a71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# CVC4 API Examples

This directory contains usage examples of CVC4's different language
bindings, library APIs, and also tutorial examples from the tutorials
available at http://cvc4.cs.stanford.edu/wiki/Tutorials

## Building Examples

The examples provided in this directory are not built by default.

```
  mkdir <build_dir>
  cd <build_dir>
  cmake ..
  make               # use -jN for parallel build with N threads

  ctest              # run all examples
  ctest -R <example> # run specific example '<example>'

  # Or just run the binaries in directory <build_dir>/bin/, for example:
  bin/api/bitvectors
```

**Note:** If you installed CVC4 in a non-standard location you have to
additionally specify `CMAKE_PREFIX_PATH` to point to the location of
`CVC4Config.cmake` (usually `<your-install-prefix>/lib/cmake`) as follows:

```
  cmake .. -DCMAKE_PREFIX_PATH=<your-install-prefix>/lib/cmake
```

The examples binaries are built into `<build_dir>/bin`.

## SimpleVC*, simple_vc*

These are examples of how to use CVC4 with each of its library
interfaces (APIs) and language bindings.  They are essentially "hello
world" examples, and do not fully demonstrate the interfaces, but
function as a starting point to using simple expressions and solving
functionality through each library.

## Targeted examples

The "api" directory contains some more specifically-targeted
examples (for bitvectors, for arithmetic, etc.).  The "api/java"
directory contains the same examples in Java.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback