The example shows how to inspect and use theory atoms.
The example shows how to inspect and use theory atoms.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
bool ret = true;
size_t atoms_n;
char *str = NULL;
size_t str_n = 0;
goto error;
}
goto error;
}
goto error;
}
printf("Model:");
for (it = atoms, ie = atoms + atoms_n; it != ie; ++it) {
size_t n;
char *str_new;
goto error;
}
if (str_n < n) {
if (!(str_new = (char *)realloc(str, sizeof(*str) * n))) {
goto error;
}
str = str_new;
str_n = n;
}
goto error;
}
printf(" %s", str);
}
printf("\n");
goto out;
error:
ret = false;
out:
if (atoms) {
free(atoms);
}
if (str) {
free(str);
}
return ret;
}
bool ret = true;
&handle)) {
goto error;
}
while (true) {
goto error;
}
goto error;
}
if (model) {
print_model(model);
}
else {
break;
}
}
goto error;
}
goto out;
error:
ret = false;
out:
}
int main(int argc, char const **argv) {
char const *error_message;
int ret = 0;
size_t size;
goto error;
}
"#theory t {"
" term { + : 1, binary, left };"
" &a/0 : term, any;"
" &b/1 : term, {=}, term, any"
"}."
"x :- &a { 1+2 }."
"y :- &b(3) { } = 17.")) {
goto error;
}
goto error;
}
goto error;
}
goto error;
}
printf("number of grounded theory atoms: %zu\n", size);
char const *name;
goto error;
}
goto error;
}
if (strcmp(name, "b") == 0) {
bool guard;
goto error;
}
printf("theory atom b/1 has a guard: %s\n", guard ? "true" : "false");
goto error;
}
break;
}
}
if (!solve(ctl, &solve_ret, lit)) {
goto error;
}
goto out;
error:
error_message = "error";
}
printf("%s\n", error_message);
out:
if (ctl) {
}
return ret;
}
Single header containing the whole clingo API.
CLINGO_VISIBILITY_DEFAULT char const * clingo_error_message()
Get the last error message set if an API call fails.
CLINGO_VISIBILITY_DEFAULT void clingo_set_error(clingo_error_t code, char const *message)
Set a custom error code and message in the active thread.
int32_t clingo_literal_t
Signed integer type used for aspif and solver literals.
Definition clingo.h:121
CLINGO_VISIBILITY_DEFAULT clingo_error_t clingo_error_code()
Get the last error code set by a clingo API call.
uint32_t clingo_id_t
Unsigned integer type used in various places.
Definition clingo.h:125
@ clingo_error_bad_alloc
memory could not be allocated
Definition clingo.h:144
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_theory_atoms(clingo_control_t const *control, clingo_theory_atoms_t const **atoms)
Get an object to inspect theory atoms that occur in the grounding.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_new(char const *const *arguments, size_t arguments_size, clingo_logger_t logger, void *logger_data, unsigned message_limit, clingo_control_t **control)
Create a new control object.
CLINGO_VISIBILITY_DEFAULT void clingo_control_free(clingo_control_t *control)
Free a control object created with clingo_control_new().
CLINGO_VISIBILITY_DEFAULT bool clingo_control_add(clingo_control_t *control, char const *name, char const *const *parameters, size_t parameters_size, char const *program)
Extend the logic program with the given non-ground logic program in string form.
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.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_symbols(clingo_model_t const *model, clingo_show_type_bitset_t show, clingo_symbol_t *symbols, size_t size)
Get the symbols of the selected types in the model.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_symbols_size(clingo_model_t const *model, clingo_show_type_bitset_t show, size_t *size)
Get the number of symbols of the selected types in the model.
struct clingo_model clingo_model_t
Object representing a model.
Definition clingo.h:2280
@ clingo_show_type_shown
Select shown atoms and terms.
Definition clingo.h:2293
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
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_to_string_size(clingo_symbol_t symbol, size_t *size)
Get the size of the string representation of a symbol (including the terminating 0).
uint64_t clingo_symbol_t
Represents a symbol.
Definition clingo.h:330
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_to_string(clingo_symbol_t symbol, char *string, size_t size)
Get the string representation of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_literal(clingo_theory_atoms_t const *atoms, clingo_id_t atom, clingo_literal_t *literal)
Get the aspif literal associated with the given theory atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_has_guard(clingo_theory_atoms_t const *atoms, clingo_id_t atom, bool *has_guard)
Whether the theory atom has a guard.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_name(clingo_theory_atoms_t const *atoms, clingo_id_t term, char const **name)
Get the name of the given constant or function theory term.
struct clingo_theory_atoms clingo_theory_atoms_t
Container that stores theory atoms, elements, and terms (see clingo_control_theory_atoms()).
Definition clingo.h:750
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_size(clingo_theory_atoms_t const *atoms, size_t *size)
Get the total number of theory atoms.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_term(clingo_theory_atoms_t const *atoms, clingo_id_t atom, clingo_id_t *term)
Get the theory term associated with the theory atom.
Struct used to specify the program parts that have to be grounded.
Definition clingo.h:2908