The example shows how to extend the clingo application.
The example shows how to extend the clingo application.It behaves like a normal clingo but adds one option to override the default program part to ground.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct options {
char const *program;
} options_t;
char const *name(void *data) {
(void)data;
return "example";
}
char const *version(void *data) {
(void)data;
return "1.0.0";
}
bool ret = true;
goto error;
}
while (true) {
goto error;
}
goto error;
}
if (!model) {
break;
}
}
goto error;
}
goto out;
error:
ret = false;
out:
}
bool parse_option(char const *value, void *data) {
char **program = (char **)data;
if (!(*program = (char *)malloc(strlen(value) + 1))) {
return false;
}
strcpy(*program, value);
return true;
}
options_t *options_ = (options_t *)data;
return clingo_options_add(options,
"Example",
"program",
"Override the default program part to ground",
parse_option, &options_->program, false, "<prog>");
}
bool main_loop(
clingo_control_t *ctl,
char const *
const *files,
size_t size,
void *data) {
options_t *options = (options_t *)data;
bool ret = true;
clingo_part_t parts[] = {{options->program ? options->program :
"base", NULL, 0}};
char const *const *file;
for (file = files; file != files + size; ++file) {
goto error;
}
}
if (size == 0) {
goto error;
}
}
goto error;
}
if (!solve(ctl)) {
goto error;
}
goto out;
error:
ret = false;
out:
return ret;
}
int main(int argc, char const **argv) {
options_t options = {NULL};
return clingo_main(&app, argv + 1, argc - 1, &options);
}
Single header containing the whole clingo API.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_solve(clingo_control_t *control, clingo_solve_mode_bitset_t mode, clingo_literal_t const *assumptions, size_t assumptions_size, clingo_solve_event_callback_t notify, void *data, clingo_solve_handle_t **handle)
Solve the currently grounded logic program enumerating its models.
unsigned clingo_solve_result_bitset_t
Corresponding type to clingo_solve_result_e.
Definition clingo.h:2488
CLINGO_VISIBILITY_DEFAULT bool clingo_control_load(clingo_control_t *control, char const *file)
Extend the logic program with a program in a file.
struct clingo_control clingo_control_t
Control object holding grounding and solving state.
Definition clingo.h:2973
CLINGO_VISIBILITY_DEFAULT bool clingo_control_ground(clingo_control_t *control, clingo_part_t const *parts, size_t parts_size, clingo_ground_callback_t ground_callback, void *ground_callback_data)
Ground the selected parts of the current (non-ground) logic program.
struct clingo_options clingo_options_t
Object to add command-line options.
Definition clingo.h:4191
CLINGO_VISIBILITY_DEFAULT int clingo_main(clingo_application_t *application, char const *const *arguments, size_t size, void *data)
Run clingo with a customized main function (similar to python and lua embedding).
CLINGO_VISIBILITY_DEFAULT bool clingo_options_add(clingo_options_t *options, char const *group, char const *option, char const *description, bool(*parse)(char const *value, void *data), void *data, bool multi, char const *argument)
Add an option that is processed with a custom parser.
struct clingo_model clingo_model_t
Object representing a model.
Definition clingo.h:2280
struct clingo_solve_handle clingo_solve_handle_t
Search handle to a solve call.
Definition clingo.h:2564
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_close(clingo_solve_handle_t *handle)
Stops the running search and releases the handle.
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_resume(clingo_solve_handle_t *handle)
Discards the last model and starts the search for the next one.
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_get(clingo_solve_handle_t *handle, clingo_solve_result_bitset_t *result)
Get the next solve result.
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_model(clingo_solve_handle_t *handle, clingo_model_t const **model)
Get the next model (or zero if there are no more models).
@ clingo_solve_mode_yield
Yield models in calls to clingo_solve_handle_model.
Definition clingo.h:2528
This struct contains a set of functions to customize the clingo application.
Definition clingo.h:4222
Struct used to specify the program parts that have to be grounded.
Definition clingo.h:2908