Clingo
Loading...
Searching...
No Matches
backend.c

The example shows how to use the backend to extend a grounded program.

The example shows how to use the backend to extend a grounded program.

Output

./backend 0
Model: a b
Model: a b c
Model:
Model: a
Model: b

Code

// NOLINTNEXTLINE(bugprone-reserved-identifier)
#define __STDC_FORMAT_MACROS
#include <stdio.h>
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
printf("TODO\n");
return 0;
}