Clingo C API
C API for clingo providing high level functions to control grounding and solving.
Loading...
Searching...
No Matches
clingo.h
Go to the documentation of this file.
1// {{{ MIT License
2
3// Copyright 2017 Roland Kaminski
4
5// Permission is hereby granted, free of charge, to any person obtaining a copy
6// of this software and associated documentation files (the "Software"), to
7// deal in the Software without restriction, including without limitation the
8// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9// sell copies of the Software, and to permit persons to whom the Software is
10// furnished to do so, subject to the following conditions:
11
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21// IN THE SOFTWARE.
22
23// }}}
24
29
44
45#ifndef CLINGO_H
46#define CLINGO_H
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52#include <stdbool.h>
53#include <stddef.h>
54#include <stdint.h>
55
56#if defined _WIN32 || defined __CYGWIN__
57#define CLINGO_WIN
58#endif
59#ifdef CLINGO_NO_VISIBILITY
60#define CLINGO_VISIBILITY_DEFAULT
61#define CLINGO_VISIBILITY_PRIVATE
62#else
63#ifdef CLINGO_WIN
64#ifdef CLINGO_BUILD_LIBRARY
65#define CLINGO_VISIBILITY_DEFAULT __declspec(dllexport)
66#else
67#define CLINGO_VISIBILITY_DEFAULT __declspec(dllimport)
68#endif
69#define CLINGO_VISIBILITY_PRIVATE
70#else
71#if __GNUC__ >= 4
72#define CLINGO_VISIBILITY_DEFAULT __attribute__((visibility("default")))
73#define CLINGO_VISIBILITY_PRIVATE __attribute__((visibility("hidden")))
74#else
75#define CLINGO_VISIBILITY_DEFAULT
76#define CLINGO_VISIBILITY_PRIVATE
77#endif
78#endif
79#endif
80
81#if defined __GNUC__
82#define CLINGO_DEPRECATED __attribute__((deprecated))
83#elif defined _MSC_VER
84#define CLINGO_DEPRECATED __declspec(deprecated)
85#else
86#define CLINGO_DEPRECATED
87#endif
88
89// {{{1 basic types and error/warning handling
90
102
107
110
112#define CLINGO_VERSION_MAJOR 5
114#define CLINGO_VERSION_MINOR 8
116#define CLINGO_VERSION_REVISION 0
118#define CLINGO_VERSION "5.8.0"
119
121typedef int32_t clingo_literal_t;
123typedef uint32_t clingo_atom_t;
125typedef uint32_t clingo_id_t;
127typedef int32_t clingo_weight_t;
133
148typedef int clingo_error_t;
150CLINGO_VISIBILITY_DEFAULT char const *clingo_error_string(clingo_error_t code);
154CLINGO_VISIBILITY_DEFAULT clingo_error_t clingo_error_code();
158CLINGO_VISIBILITY_DEFAULT char const *clingo_error_message();
162CLINGO_VISIBILITY_DEFAULT void clingo_set_error(clingo_error_t code, char const *message);
163
177CLINGO_VISIBILITY_DEFAULT char const *clingo_warning_string(clingo_warning_t code);
187typedef void (*clingo_logger_t)(clingo_warning_t code, char const *message, void *data);
188
194CLINGO_VISIBILITY_DEFAULT void clingo_version(int *major, int *minor, int *revision);
195
204
210typedef struct clingo_location {
211 char const *begin_file;
212 char const *end_file;
213 size_t begin_line;
214 size_t end_line;
216 size_t end_column;
218
220
221// {{{1 signature and symbols
222
239
246
249
254typedef uint64_t clingo_signature_t;
255
258
267CLINGO_VISIBILITY_DEFAULT bool clingo_signature_create(char const *name, uint32_t arity, bool positive,
268 clingo_signature_t *signature);
276CLINGO_VISIBILITY_DEFAULT char const *clingo_signature_name(clingo_signature_t signature);
281CLINGO_VISIBILITY_DEFAULT uint32_t clingo_signature_arity(clingo_signature_t signature);
286CLINGO_VISIBILITY_DEFAULT bool clingo_signature_is_positive(clingo_signature_t signature);
291CLINGO_VISIBILITY_DEFAULT bool clingo_signature_is_negative(clingo_signature_t signature);
311CLINGO_VISIBILITY_DEFAULT size_t clingo_signature_hash(clingo_signature_t signature);
312
314
325
330typedef uint64_t clingo_symbol_t;
331
334
339CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_number(int number, clingo_symbol_t *symbol);
343CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_supremum(clingo_symbol_t *symbol);
347CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_infimum(clingo_symbol_t *symbol);
354CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_string(char const *string, clingo_symbol_t *symbol);
365CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_id(char const *name, bool positive, clingo_symbol_t *symbol);
377CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_function(char const *name, clingo_symbol_t const *arguments,
378 size_t arguments_size, bool positive,
379 clingo_symbol_t *symbol);
380
382
385
392CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_number(clingo_symbol_t symbol, int *number);
402CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_name(clingo_symbol_t symbol, char const **name);
412CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_string(clingo_symbol_t symbol, char const **string);
419CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_positive(clingo_symbol_t symbol, bool *positive);
426CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_negative(clingo_symbol_t symbol, bool *negative);
434CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_arguments(clingo_symbol_t symbol, clingo_symbol_t const **arguments,
435 size_t *arguments_size);
447CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_to_string_size(clingo_symbol_t symbol, size_t *size);
457CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_to_string(clingo_symbol_t symbol, char *string, size_t size);
458
460
463
469CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_equal_to(clingo_symbol_t a, clingo_symbol_t b);
479CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_less_than(clingo_symbol_t a, clingo_symbol_t b);
484CLINGO_VISIBILITY_DEFAULT size_t clingo_symbol_hash(clingo_symbol_t symbol);
485
487
497CLINGO_VISIBILITY_DEFAULT bool clingo_add_string(char const *string, char const **result);
511CLINGO_VISIBILITY_DEFAULT bool clingo_parse_term(char const *string, clingo_logger_t logger, void *logger_data,
512 unsigned message_limit, clingo_symbol_t *symbol);
513
515
516// {{{1 symbolic atoms
517
532
538
541
546typedef struct clingo_symbolic_atoms clingo_symbolic_atoms_t;
562CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_size(clingo_symbolic_atoms_t const *atoms, size_t *size);
570CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_begin(clingo_symbolic_atoms_t const *atoms,
571 clingo_signature_t const *signature,
578CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_end(clingo_symbolic_atoms_t const *atoms,
587CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_find(clingo_symbolic_atoms_t const *atoms, clingo_symbol_t symbol,
596CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_iterator_is_equal_to(clingo_symbolic_atoms_t const *atoms,
599 bool *equal);
606CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_symbol(clingo_symbolic_atoms_t const *atoms,
608 clingo_symbol_t *symbol);
619CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_is_fact(clingo_symbolic_atoms_t const *atoms,
620 clingo_symbolic_atom_iterator_t iterator, bool *fact);
630CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_is_external(clingo_symbolic_atoms_t const *atoms,
632 bool *external);
643CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_literal(clingo_symbolic_atoms_t const *atoms,
645 clingo_literal_t *literal);
651CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_signatures_size(clingo_symbolic_atoms_t const *atoms,
652 size_t *size);
663CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_signatures(clingo_symbolic_atoms_t const *atoms,
664 clingo_signature_t *signatures, size_t size);
671CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_next(clingo_symbolic_atoms_t const *atoms,
682CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_is_valid(clingo_symbolic_atoms_t const *atoms,
683 clingo_symbolic_atom_iterator_t iterator, bool *valid);
684
693typedef bool (*clingo_symbol_callback_t)(clingo_symbol_t const *symbols, size_t symbols_size, void *data);
695
696// {{{1 theory atoms
697
719
733
736
748
750typedef struct clingo_theory_atoms clingo_theory_atoms_t;
751
754
761CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_type(clingo_theory_atoms_t const *atoms, clingo_id_t term,
770CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_number(clingo_theory_atoms_t const *atoms, clingo_id_t term,
771 int *number);
782CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_name(clingo_theory_atoms_t const *atoms, clingo_id_t term,
783 char const **name);
792CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_arguments(clingo_theory_atoms_t const *atoms, clingo_id_t term,
793 clingo_id_t const **arguments, size_t *size);
801CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_to_string_size(clingo_theory_atoms_t const *atoms,
802 clingo_id_t term, size_t *size);
814CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_to_string(clingo_theory_atoms_t const *atoms, clingo_id_t term,
815 char *string, size_t size);
817
820
828CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_tuple(clingo_theory_atoms_t const *atoms,
829 clingo_id_t element, clingo_id_t const **tuple,
830 size_t *size);
838CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_condition(clingo_theory_atoms_t const *atoms,
839 clingo_id_t element,
840 clingo_literal_t const **condition, size_t *size);
852CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_condition_id(clingo_theory_atoms_t const *atoms,
853 clingo_id_t element,
854 clingo_literal_t *condition);
862CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_to_string_size(clingo_theory_atoms_t const *atoms,
863 clingo_id_t element, size_t *size);
873CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_to_string(clingo_theory_atoms_t const *atoms,
874 clingo_id_t element, char *string, size_t size);
876
879
885CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_size(clingo_theory_atoms_t const *atoms, size_t *size);
892CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_term(clingo_theory_atoms_t const *atoms, clingo_id_t atom,
893 clingo_id_t *term);
901CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_elements(clingo_theory_atoms_t const *atoms, clingo_id_t atom,
902 clingo_id_t const **elements, size_t *size);
909CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_has_guard(clingo_theory_atoms_t const *atoms, clingo_id_t atom,
910 bool *has_guard);
921CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_guard(clingo_theory_atoms_t const *atoms, clingo_id_t atom,
922 char const **connective, clingo_id_t *term);
929CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_literal(clingo_theory_atoms_t const *atoms, clingo_id_t atom,
930 clingo_literal_t *literal);
938CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_to_string_size(clingo_theory_atoms_t const *atoms,
939 clingo_id_t atom, size_t *size);
949CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_to_string(clingo_theory_atoms_t const *atoms, clingo_id_t atom,
950 char *string, size_t size);
952
954
955// {{{1 propagator
956
968
974
977
988typedef struct clingo_assignment clingo_assignment_t;
989
992
997CLINGO_VISIBILITY_DEFAULT uint32_t clingo_assignment_decision_level(clingo_assignment_t const *assignment);
1004CLINGO_VISIBILITY_DEFAULT uint32_t clingo_assignment_root_level(clingo_assignment_t const *assignment);
1009CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_has_conflict(clingo_assignment_t const *assignment);
1015CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_has_literal(clingo_assignment_t const *assignment,
1016 clingo_literal_t literal);
1023CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_level(clingo_assignment_t const *assignment, clingo_literal_t literal,
1024 uint32_t *level);
1031CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_decision(clingo_assignment_t const *assignment, uint32_t level,
1032 clingo_literal_t *literal);
1039CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_fixed(clingo_assignment_t const *assignment,
1040 clingo_literal_t literal, bool *is_fixed);
1048CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_true(clingo_assignment_t const *assignment,
1049 clingo_literal_t literal, bool *is_true);
1057CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_false(clingo_assignment_t const *assignment,
1058 clingo_literal_t literal, bool *is_false);
1065CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_truth_value(clingo_assignment_t const *assignment,
1066 clingo_literal_t literal, clingo_truth_value_t *value);
1071CLINGO_VISIBILITY_DEFAULT size_t clingo_assignment_size(clingo_assignment_t const *assignment);
1078CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_at(clingo_assignment_t const *assignment, size_t offset,
1079 clingo_literal_t *literal);
1084CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_total(clingo_assignment_t const *assignment);
1090CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_size(clingo_assignment_t const *assignment, uint32_t *size);
1104CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_begin(clingo_assignment_t const *assignment, uint32_t level,
1105 uint32_t *offset);
1114CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_end(clingo_assignment_t const *assignment, uint32_t level,
1115 uint32_t *offset);
1122CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_at(clingo_assignment_t const *assignment, uint32_t offset,
1123 clingo_literal_t *literal);
1124
1126
1140
1148
1157
1169typedef struct clingo_propagate_init clingo_propagate_init_t;
1170
1173
1180CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_solver_literal(clingo_propagate_init_t const *init,
1181 clingo_literal_t aspif_literal,
1182 clingo_literal_t *solver_literal);
1189 clingo_literal_t solver_literal);
1197 clingo_literal_t solver_literal,
1198 clingo_id_t thread_id);
1205 clingo_literal_t solver_literal);
1213 clingo_literal_t solver_literal,
1214 uint32_t thread_id);
1226 clingo_literal_t solver_literal);
1232CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_symbolic_atoms(clingo_propagate_init_t const *init,
1233 clingo_symbolic_atoms_t const **atoms);
1239CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_theory_atoms(clingo_propagate_init_t const *init,
1240 clingo_theory_atoms_t const **atoms);
1246CLINGO_VISIBILITY_DEFAULT int clingo_propagate_init_number_of_threads(clingo_propagate_init_t const *init);
1258CLINGO_VISIBILITY_DEFAULT clingo_propagator_check_mode_t
1271CLINGO_VISIBILITY_DEFAULT clingo_propagator_undo_mode_t
1277CLINGO_VISIBILITY_DEFAULT clingo_assignment_t const *
1292CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_literal(clingo_propagate_init_t *init, bool freeze,
1293 clingo_literal_t *result);
1306 clingo_literal_t const *clause, size_t size,
1307 bool *result);
1327CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_weight_constraint(
1328 clingo_propagate_init_t *init, clingo_literal_t literal, clingo_weighted_literal_t const *literals, size_t size,
1329 clingo_weight_t bound, clingo_weight_constraint_type_t type, bool compare_equal, bool *result);
1341 clingo_literal_t literal, clingo_weight_t weight,
1342 clingo_weight_t priority);
1353CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_propagate(clingo_propagate_init_t *init, bool *result);
1354
1356
1371
1373typedef struct clingo_propagate_control clingo_propagate_control_t;
1374
1377
1389CLINGO_VISIBILITY_DEFAULT clingo_assignment_t const *
1402 clingo_literal_t *result);
1415 clingo_literal_t literal);
1422CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_has_watch(clingo_propagate_control_t const *control,
1423 clingo_literal_t literal);
1431 clingo_literal_t literal);
1447 clingo_literal_t const *clause, size_t size,
1448 clingo_clause_type_t type, bool *result);
1460CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_propagate(clingo_propagate_control_t *control, bool *result);
1461
1463
1466
1469 void *);
1470
1473 void *);
1474
1477
1482typedef struct clingo_propagator {
1494 bool (*init)(clingo_propagate_init_t *init, void *data);
1536 bool (*propagate)(clingo_propagate_control_t *control, clingo_literal_t const *changes, size_t size, void *data);
1549 void (*undo)(clingo_propagate_control_t const *control, clingo_literal_t const *changes, size_t size, void *data);
1562 bool (*check)(clingo_propagate_control_t *control, void *data);
1576 bool (*decide)(clingo_id_t thread_id, clingo_assignment_t const *assignment, clingo_literal_t fallback, void *data,
1577 clingo_literal_t *decision);
1579
1581
1582// {{{1 backend
1583
1599
1606
1609
1617
1626
1640
1652
1654typedef struct clingo_backend clingo_backend_t;
1655
1662CLINGO_VISIBILITY_DEFAULT bool clingo_backend_begin(clingo_backend_t *backend);
1669CLINGO_VISIBILITY_DEFAULT bool clingo_backend_end(clingo_backend_t *backend);
1680CLINGO_VISIBILITY_DEFAULT bool clingo_backend_rule(clingo_backend_t *backend, bool choice, clingo_atom_t const *head,
1681 size_t head_size, clingo_literal_t const *body, size_t body_size);
1694CLINGO_VISIBILITY_DEFAULT bool clingo_backend_weight_rule(clingo_backend_t *backend, bool choice,
1695 clingo_atom_t const *head, size_t head_size,
1696 clingo_weight_t lower_bound,
1697 clingo_weighted_literal_t const *body, size_t body_size);
1706CLINGO_VISIBILITY_DEFAULT bool clingo_backend_minimize(clingo_backend_t *backend, clingo_weight_t priority,
1707 clingo_weighted_literal_t const *literals, size_t size);
1715CLINGO_VISIBILITY_DEFAULT bool clingo_backend_project(clingo_backend_t *backend, clingo_atom_t const *atoms,
1716 size_t size);
1724CLINGO_VISIBILITY_DEFAULT bool clingo_backend_external(clingo_backend_t *backend, clingo_atom_t atom,
1734CLINGO_VISIBILITY_DEFAULT bool clingo_backend_assume(clingo_backend_t *backend, clingo_literal_t const *literals,
1735 size_t size);
1747CLINGO_VISIBILITY_DEFAULT bool clingo_backend_heuristic(clingo_backend_t *backend, clingo_atom_t atom,
1748 clingo_heuristic_type_t type, int bias, unsigned priority,
1749 clingo_literal_t const *condition, size_t size);
1759CLINGO_VISIBILITY_DEFAULT bool clingo_backend_acyc_edge(clingo_backend_t *backend, int node_u, int node_v,
1760 clingo_literal_t const *condition, size_t size);
1767CLINGO_VISIBILITY_DEFAULT bool clingo_backend_add_atom(clingo_backend_t *backend, clingo_symbol_t *symbol,
1768 clingo_atom_t *atom);
1776CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_number(clingo_backend_t *backend, int number,
1777 clingo_id_t *term_id);
1785CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_string(clingo_backend_t *backend, char const *string,
1786 clingo_id_t *term_id);
1796CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_sequence(clingo_backend_t *backend,
1798 clingo_id_t const *arguments, size_t size,
1799 clingo_id_t *term_id);
1809CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_function(clingo_backend_t *backend, char const *name,
1810 clingo_id_t const *arguments, size_t size,
1811 clingo_id_t *term_id);
1819CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_symbol(clingo_backend_t *backend, clingo_symbol_t symbol,
1820 clingo_id_t *term_id);
1831CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_element(clingo_backend_t *backend, clingo_id_t const *tuple,
1832 size_t tuple_size, clingo_literal_t const *condition,
1833 size_t condition_size, clingo_id_t *element_id);
1848CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_atom(clingo_backend_t *backend, clingo_atom_t atom,
1849 clingo_id_t term_id, clingo_id_t const *elements, size_t size,
1850 clingo_atom_t *atom_id);
1865CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_atom_with_guard(clingo_backend_t *backend, clingo_atom_t atom,
1866 clingo_id_t term_id, clingo_id_t const *elements,
1867 size_t size, char const *operator_name,
1868 clingo_id_t right_hand_side_id,
1869 clingo_atom_t *atom_id);
1870
1872
1873// {{{1 configuration
1874
1891
1901
1904
1913
1915typedef struct clingo_configuration clingo_configuration_t;
1916
1922CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_root(clingo_configuration_t const *configuration, clingo_id_t *key);
1931CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_type(clingo_configuration_t const *configuration, clingo_id_t key,
1939CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_description(clingo_configuration_t const *configuration,
1940 clingo_id_t key, char const **description);
1941
1944
1952CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_array_size(clingo_configuration_t const *configuration,
1953 clingo_id_t key, size_t *size);
1964CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_array_at(clingo_configuration_t const *configuration,
1965 clingo_id_t key, size_t offset, clingo_id_t *subkey);
1967
1970
1978CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_size(clingo_configuration_t const *configuration,
1979 clingo_id_t key, size_t *size);
1989CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_has_subkey(clingo_configuration_t const *configuration,
1990 clingo_id_t key, char const *name, bool *result);
1999CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_subkey_name(clingo_configuration_t const *configuration,
2000 clingo_id_t key, size_t offset, char const **name);
2010CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_at(clingo_configuration_t const *configuration, clingo_id_t key,
2011 char const *name, clingo_id_t *subkey);
2013
2016
2024CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_is_assigned(clingo_configuration_t const *configuration,
2025 clingo_id_t key, bool *assigned);
2033CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_get_size(clingo_configuration_t const *configuration,
2034 clingo_id_t key, size_t *size);
2044CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_get(clingo_configuration_t const *configuration,
2045 clingo_id_t key, char *value, size_t size);
2053CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_set(clingo_configuration_t *configuration, clingo_id_t key,
2054 char const *value);
2056
2058
2059// {{{1 statistics
2060
2091
2097
2100
2110
2112typedef struct clingo_statistic clingo_statistics_t;
2113
2119CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_root(clingo_statistics_t const *statistics, uint64_t *key);
2126CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_type(clingo_statistics_t const *statistics, uint64_t key,
2128
2131
2139CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_size(clingo_statistics_t const *statistics, uint64_t key,
2140 size_t *size);
2149CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_at(clingo_statistics_t const *statistics, uint64_t key,
2150 size_t offset, uint64_t *subkey);
2159CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_push(clingo_statistics_t *statistics, uint64_t key,
2160 clingo_statistics_type_t type, uint64_t *subkey);
2162
2165
2173CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_size(clingo_statistics_t const *statistics, uint64_t key,
2174 size_t *size);
2183CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_has_subkey(clingo_statistics_t const *statistics, uint64_t key,
2184 char const *name, bool *result);
2193CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_subkey_name(clingo_statistics_t const *statistics, uint64_t key,
2194 size_t offset, char const **name);
2204CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_at(clingo_statistics_t const *statistics, uint64_t key,
2205 char const *name, uint64_t *subkey);
2215CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_add_subkey(clingo_statistics_t *statistics, uint64_t key,
2216 char const *name, clingo_statistics_type_t type,
2217 uint64_t *subkey);
2219
2222
2230CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_value_get(clingo_statistics_t const *statistics, uint64_t key,
2231 double *value);
2239CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_value_set(clingo_statistics_t *statistics, uint64_t key, double value);
2241
2243
2244// {{{1 model and solve control
2245
2266
2272
2275
2277typedef struct clingo_solve_control clingo_solve_control_t;
2278
2280typedef struct clingo_model clingo_model_t;
2281
2290
2303
2310typedef int clingo_consequence_t;
2311
2313
2316
2322CLINGO_VISIBILITY_DEFAULT bool clingo_model_type(clingo_model_t const *model, clingo_model_type_t *type);
2328CLINGO_VISIBILITY_DEFAULT bool clingo_model_number(clingo_model_t const *model, uint64_t *number);
2336CLINGO_VISIBILITY_DEFAULT bool clingo_model_symbols_size(clingo_model_t const *model, clingo_show_type_bitset_t show,
2337 size_t *size);
2353CLINGO_VISIBILITY_DEFAULT bool clingo_model_symbols(clingo_model_t const *model, clingo_show_type_bitset_t show,
2354 clingo_symbol_t *symbols, size_t size);
2361CLINGO_VISIBILITY_DEFAULT bool clingo_model_contains(clingo_model_t const *model, clingo_symbol_t atom,
2362 bool *contained);
2369CLINGO_VISIBILITY_DEFAULT bool clingo_model_is_true(clingo_model_t const *model, clingo_literal_t literal,
2370 bool *result);
2383CLINGO_VISIBILITY_DEFAULT bool clingo_model_is_consequence(clingo_model_t const *model, clingo_literal_t literal,
2384 clingo_consequence_t *result);
2390CLINGO_VISIBILITY_DEFAULT bool clingo_model_cost_size(clingo_model_t const *model, size_t *size);
2402CLINGO_VISIBILITY_DEFAULT bool clingo_model_cost(clingo_model_t const *model, int64_t *costs, size_t size);
2415CLINGO_VISIBILITY_DEFAULT bool clingo_model_priority(clingo_model_t const *model, clingo_weight_t *priorities,
2416 size_t size);
2424CLINGO_VISIBILITY_DEFAULT bool clingo_model_optimality_proven(clingo_model_t const *model, bool *proven);
2430CLINGO_VISIBILITY_DEFAULT bool clingo_model_thread_id(clingo_model_t const *model, clingo_id_t *id);
2441CLINGO_VISIBILITY_DEFAULT bool clingo_model_extend(clingo_model_t *model, clingo_symbol_t const *symbols, size_t size);
2443
2446
2453CLINGO_VISIBILITY_DEFAULT bool clingo_model_context(clingo_model_t const *model, clingo_solve_control_t **control);
2459CLINGO_VISIBILITY_DEFAULT bool clingo_solve_control_symbolic_atoms(clingo_solve_control_t const *control,
2460 clingo_symbolic_atoms_t const **atoms);
2473CLINGO_VISIBILITY_DEFAULT bool clingo_solve_control_add_clause(clingo_solve_control_t *control,
2474 clingo_literal_t const *clause, size_t size);
2476
2478
2479// {{{1 solve result
2480
2481// NOTE: documented in Control Module
2489
2490// {{{1 solve handle
2491
2512
2521
2524
2532
2542
2559typedef bool (*clingo_solve_event_callback_t)(clingo_solve_event_type_t type, void *event, void *data, bool *goon);
2560
2564typedef struct clingo_solve_handle clingo_solve_handle_t;
2565
2577CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_get(clingo_solve_handle_t *handle,
2587CLINGO_VISIBILITY_DEFAULT void clingo_solve_handle_wait(clingo_solve_handle_t *handle, double timeout, bool *result);
2595CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_model(clingo_solve_handle_t *handle, clingo_model_t const **model);
2605CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_core(clingo_solve_handle_t *handle, clingo_literal_t const **core,
2606 size_t *size);
2616CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_last(clingo_solve_handle_t *handle, clingo_model_t const **model);
2627CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_resume(clingo_solve_handle_t *handle);
2634CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_cancel(clingo_solve_handle_t *handle);
2643CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_close(clingo_solve_handle_t *handle);
2644
2646// {{{1 ground program observer
2647
2651
2654
2675 bool (*init_program)(bool incremental, void *data);
2682 bool (*begin_step)(void *data);
2691 bool (*end_step)(void *data);
2692
2702 bool (*rule)(bool choice, clingo_atom_t const *head, size_t head_size, clingo_literal_t const *body,
2703 size_t body_size, void *data);
2714 bool (*weight_rule)(bool choice, clingo_atom_t const *head, size_t head_size, clingo_weight_t lower_bound,
2715 clingo_weighted_literal_t const *body, size_t body_size, void *data);
2723 bool (*minimize)(clingo_weight_t priority, clingo_weighted_literal_t const *literals, size_t size, void *data);
2730 bool (*project)(clingo_atom_t const *atoms, size_t size, void *data);
2739 bool (*output_atom)(clingo_symbol_t symbol, clingo_atom_t atom, void *data);
2747 bool (*output_term)(clingo_symbol_t symbol, clingo_literal_t const *condition, size_t size, void *data);
2754 bool (*external)(clingo_atom_t atom, clingo_external_type_t type, void *data);
2762 bool (*assume)(clingo_literal_t const *literals, size_t size, void *data);
2773 bool (*heuristic)(clingo_atom_t atom, clingo_heuristic_type_t type, int bias, unsigned priority,
2774 clingo_literal_t const *condition, size_t size, void *data);
2783 bool (*acyc_edge)(int node_u, int node_v, clingo_literal_t const *condition, size_t size, void *data);
2784
2791 bool (*theory_term_number)(clingo_id_t term_id, int number, void *data);
2798 bool (*theory_term_string)(clingo_id_t term_id, char const *name, void *data);
2813 bool (*theory_term_compound)(clingo_id_t term_id, int name_id_or_type, clingo_id_t const *arguments, size_t size,
2814 void *data);
2824 bool (*theory_element)(clingo_id_t element_id, clingo_id_t const *terms, size_t terms_size,
2825 clingo_literal_t const *condition, size_t condition_size, void *data);
2834 bool (*theory_atom)(clingo_id_t atom_id_or_zero, clingo_id_t term_id, clingo_id_t const *elements, size_t size,
2835 void *data);
2846 bool (*theory_atom_with_guard)(clingo_id_t atom_id_or_zero, clingo_id_t term_id, clingo_id_t const *elements,
2847 size_t size, clingo_id_t operator_id, clingo_id_t right_hand_side_id, void *data);
2849
2851
2852// {{{1 control
2853
2867
2872
2875
2893
2896
2908typedef struct clingo_part {
2909 char const *name;
2911 size_t size;
2913
2954typedef bool (*clingo_ground_callback_t)(clingo_location_t const *location, char const *name,
2955 clingo_symbol_t const *arguments, size_t arguments_size, void *data,
2956 clingo_symbol_callback_t symbol_callback, void *symbol_callback_data);
2957
2970typedef unsigned clingo_backend_type_t;
2971
2973typedef struct clingo_control clingo_control_t;
2974
2995CLINGO_VISIBILITY_DEFAULT bool clingo_control_new(char const *const *arguments, size_t arguments_size,
2996 clingo_logger_t logger, void *logger_data, unsigned message_limit,
2997 clingo_control_t **control);
2998
3001CLINGO_VISIBILITY_DEFAULT void clingo_control_free(clingo_control_t *control);
3002
3005
3013CLINGO_VISIBILITY_DEFAULT bool clingo_control_load(clingo_control_t *control, char const *file);
3014
3027CLINGO_VISIBILITY_DEFAULT bool clingo_control_load_aspif(clingo_control_t *control, char const **files, size_t size);
3028
3044CLINGO_VISIBILITY_DEFAULT bool clingo_control_add(clingo_control_t *control, char const *name,
3045 char const *const *parameters, size_t parameters_size,
3046 char const *program);
3047
3066CLINGO_VISIBILITY_DEFAULT bool clingo_control_ground(clingo_control_t *control, clingo_part_t const *parts,
3067 size_t parts_size, clingo_ground_callback_t ground_callback,
3068 void *ground_callback_data);
3069
3071
3074
3089CLINGO_VISIBILITY_DEFAULT bool clingo_control_solve(clingo_control_t *control, clingo_solve_mode_bitset_t mode,
3090 clingo_literal_t const *assumptions, size_t assumptions_size,
3091 clingo_solve_event_callback_t notify, void *data,
3092 clingo_solve_handle_t **handle);
3103//
3110CLINGO_VISIBILITY_DEFAULT bool clingo_control_cleanup(clingo_control_t *control);
3123CLINGO_VISIBILITY_DEFAULT bool clingo_control_assign_external(clingo_control_t *control, clingo_literal_t literal,
3124 clingo_truth_value_t value);
3137CLINGO_VISIBILITY_DEFAULT bool clingo_control_release_external(clingo_control_t *control, clingo_literal_t literal);
3145CLINGO_VISIBILITY_DEFAULT bool clingo_control_remove_minimize(clingo_control_t *control);
3157CLINGO_VISIBILITY_DEFAULT bool clingo_control_update_project(clingo_control_t *control, clingo_atom_t const *atoms,
3158 size_t size, bool append);
3159
3173CLINGO_VISIBILITY_DEFAULT bool clingo_control_register_propagator(clingo_control_t *control,
3174 clingo_propagator_t const *propagator, void *data,
3175 bool sequential);
3186CLINGO_VISIBILITY_DEFAULT bool clingo_control_is_conflicting(clingo_control_t const *control);
3187
3205CLINGO_VISIBILITY_DEFAULT bool clingo_control_statistics(clingo_control_t const *control,
3206 clingo_statistics_t const **statistics);
3210CLINGO_VISIBILITY_DEFAULT void clingo_control_interrupt(clingo_control_t *control);
3222CLINGO_VISIBILITY_DEFAULT bool clingo_control_clasp_facade(clingo_control_t *control, void **clasp);
3223
3225
3228
3236CLINGO_VISIBILITY_DEFAULT bool clingo_control_configuration(clingo_control_t *control,
3237 clingo_configuration_t **configuration);
3238
3254CLINGO_VISIBILITY_DEFAULT bool clingo_control_set_enable_enumeration_assumption(clingo_control_t *control, bool enable);
3261
3272CLINGO_VISIBILITY_DEFAULT bool clingo_control_set_enable_cleanup(clingo_control_t *control, bool enable);
3281CLINGO_VISIBILITY_DEFAULT bool clingo_control_get_enable_cleanup(clingo_control_t *control);
3282
3284
3287
3294CLINGO_VISIBILITY_DEFAULT bool clingo_control_get_const(clingo_control_t const *control, char const *name,
3295 clingo_symbol_t *symbol);
3305CLINGO_VISIBILITY_DEFAULT bool clingo_control_has_const(clingo_control_t const *control, char const *name,
3306 bool *exists);
3315CLINGO_VISIBILITY_DEFAULT bool clingo_control_symbolic_atoms(clingo_control_t const *control,
3316 clingo_symbolic_atoms_t const **atoms);
3324CLINGO_VISIBILITY_DEFAULT bool clingo_control_theory_atoms(clingo_control_t const *control,
3325 clingo_theory_atoms_t const **atoms);
3333CLINGO_VISIBILITY_DEFAULT bool clingo_control_register_observer(clingo_control_t *control,
3334 clingo_ground_program_observer_t const *observer,
3335 bool replace, void *data);
3348CLINGO_VISIBILITY_DEFAULT bool clingo_control_register_backend(clingo_control_t *control, clingo_backend_type_t type,
3349 char const *file, bool replace);
3351
3354
3363CLINGO_VISIBILITY_DEFAULT bool clingo_control_backend(clingo_control_t *control, clingo_backend_t **backend);
3365
3367
3368// {{{1 ast
3369
3387
3390
3393
3404
3416
3425
3434
3449
3460
3469
3479
3482 // terms
3483 clingo_ast_type_id,
3484 clingo_ast_type_variable,
3485 clingo_ast_type_symbolic_term,
3486 clingo_ast_type_unary_operation,
3487 clingo_ast_type_binary_operation,
3488 clingo_ast_type_interval,
3489 clingo_ast_type_function,
3490 clingo_ast_type_pool,
3491 // simple atoms
3492 clingo_ast_type_boolean_constant,
3493 clingo_ast_type_symbolic_atom,
3494 clingo_ast_type_comparison,
3495 // aggregates
3496 clingo_ast_type_guard,
3497 clingo_ast_type_conditional_literal,
3498 clingo_ast_type_aggregate,
3499 clingo_ast_type_body_aggregate_element,
3500 clingo_ast_type_body_aggregate,
3501 clingo_ast_type_head_aggregate_element,
3502 clingo_ast_type_head_aggregate,
3503 clingo_ast_type_disjunction,
3504 // theory atoms
3505 clingo_ast_type_theory_sequence,
3506 clingo_ast_type_theory_function,
3507 clingo_ast_type_theory_unparsed_term_element,
3508 clingo_ast_type_theory_unparsed_term,
3509 clingo_ast_type_theory_guard,
3510 clingo_ast_type_theory_atom_element,
3511 clingo_ast_type_theory_atom,
3512 // literals
3513 clingo_ast_type_literal,
3514 // theory definition
3515 clingo_ast_type_theory_operator_definition,
3516 clingo_ast_type_theory_term_definition,
3517 clingo_ast_type_theory_guard_definition,
3518 clingo_ast_type_theory_atom_definition,
3519 // statements
3520 clingo_ast_type_rule,
3521 clingo_ast_type_definition,
3522 clingo_ast_type_show_signature,
3523 clingo_ast_type_show_term,
3524 clingo_ast_type_minimize,
3525 clingo_ast_type_script,
3526 clingo_ast_type_program,
3527 clingo_ast_type_external,
3528 clingo_ast_type_edge,
3529 clingo_ast_type_heuristic,
3530 clingo_ast_type_project_atom,
3531 clingo_ast_type_project_signature,
3532 clingo_ast_type_defined,
3533 clingo_ast_type_theory_definition,
3534 clingo_ast_type_comment
3535};
3538
3552
3555 clingo_ast_attribute_argument,
3556 clingo_ast_attribute_arguments,
3557 clingo_ast_attribute_arity,
3558 clingo_ast_attribute_atom,
3559 clingo_ast_attribute_atoms,
3560 clingo_ast_attribute_atom_type,
3561 clingo_ast_attribute_bias,
3562 clingo_ast_attribute_body,
3563 clingo_ast_attribute_code,
3564 clingo_ast_attribute_coefficient,
3565 clingo_ast_attribute_comparison,
3566 clingo_ast_attribute_condition,
3567 clingo_ast_attribute_elements,
3568 clingo_ast_attribute_external,
3569 clingo_ast_attribute_external_type,
3570 clingo_ast_attribute_function,
3571 clingo_ast_attribute_guard,
3572 clingo_ast_attribute_guards,
3573 clingo_ast_attribute_head,
3574 clingo_ast_attribute_is_default,
3575 clingo_ast_attribute_left,
3576 clingo_ast_attribute_left_guard,
3577 clingo_ast_attribute_literal,
3578 clingo_ast_attribute_location,
3579 clingo_ast_attribute_modifier,
3580 clingo_ast_attribute_name,
3581 clingo_ast_attribute_node_u,
3582 clingo_ast_attribute_node_v,
3583 clingo_ast_attribute_operator_name,
3584 clingo_ast_attribute_operator_type,
3585 clingo_ast_attribute_operators,
3586 clingo_ast_attribute_parameters,
3587 clingo_ast_attribute_positive,
3588 clingo_ast_attribute_priority,
3589 clingo_ast_attribute_right,
3590 clingo_ast_attribute_right_guard,
3591 clingo_ast_attribute_sequence_type,
3592 clingo_ast_attribute_sign,
3593 clingo_ast_attribute_symbol,
3594 clingo_ast_attribute_term,
3595 clingo_ast_attribute_terms,
3596 clingo_ast_attribute_value,
3597 clingo_ast_attribute_variable,
3598 clingo_ast_attribute_weight,
3599 clingo_ast_attribute_comment_type,
3600};
3603
3606 char const *const *names;
3607 size_t size;
3609
3611CLINGO_VISIBILITY_DEFAULT extern clingo_ast_attribute_names_t g_clingo_ast_attribute_names;
3612
3618
3621 char const *name;
3622 clingo_ast_argument_t const *arguments;
3623 size_t size;
3625
3628 clingo_ast_constructor_t const *constructors;
3629 size_t size;
3631
3635CLINGO_VISIBILITY_DEFAULT extern clingo_ast_constructors_t g_clingo_ast_constructors;
3636
3638typedef struct clingo_ast clingo_ast_t;
3639
3642
3653CLINGO_VISIBILITY_DEFAULT bool clingo_ast_build(clingo_ast_type_t type, clingo_ast_t **ast, ...);
3654
3656
3659
3666CLINGO_VISIBILITY_DEFAULT void clingo_ast_acquire(clingo_ast_t *ast);
3672CLINGO_VISIBILITY_DEFAULT void clingo_ast_release(clingo_ast_t *ast);
3673
3675
3678
3685CLINGO_VISIBILITY_DEFAULT bool clingo_ast_copy(clingo_ast_t *ast, clingo_ast_t **copy);
3692CLINGO_VISIBILITY_DEFAULT bool clingo_ast_deep_copy(clingo_ast_t *ast, clingo_ast_t **copy);
3693
3695
3698
3704CLINGO_VISIBILITY_DEFAULT bool clingo_ast_less_than(clingo_ast_t *a, clingo_ast_t *b);
3710CLINGO_VISIBILITY_DEFAULT bool clingo_ast_equal(clingo_ast_t *a, clingo_ast_t *b);
3715CLINGO_VISIBILITY_DEFAULT size_t clingo_ast_hash(clingo_ast_t *ast);
3716
3718
3721
3728CLINGO_VISIBILITY_DEFAULT bool clingo_ast_to_string_size(clingo_ast_t *ast, size_t *size);
3736CLINGO_VISIBILITY_DEFAULT bool clingo_ast_to_string(clingo_ast_t *ast, char *string, size_t size);
3737
3739
3742
3749CLINGO_VISIBILITY_DEFAULT bool clingo_ast_get_type(clingo_ast_t *ast, clingo_ast_type_t *type);
3757CLINGO_VISIBILITY_DEFAULT bool clingo_ast_has_attribute(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3758 bool *has_attribute);
3766CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_type(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3768
3770
3773
3781CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_number(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3782 int *value);
3790CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_number(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3791 int value);
3792
3794
3797
3805CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_symbol(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3806 clingo_symbol_t *value);
3814CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_symbol(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3815 clingo_symbol_t value);
3816
3818
3821
3829CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_location(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3830 clingo_location_t *value);
3838CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_location(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3839 clingo_location_t const *value);
3840
3842
3845
3853CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_string(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3854 char const **value);
3862CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_string(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3863 char const *value);
3864
3866
3869
3877CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_ast(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3878 clingo_ast_t **value);
3886CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_ast(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3887 clingo_ast_t *value);
3888
3890
3893
3903CLINGO_VISIBILITY_DEFAULT bool
3914CLINGO_VISIBILITY_DEFAULT bool
3916
3918
3921
3930CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_string_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3931 size_t index, char const **value);
3941CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_string_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3942 size_t index, char const *value);
3950CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_delete_string_at(clingo_ast_t *ast,
3951 clingo_ast_attribute_t attribute, size_t index);
3959CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_size_string_array(clingo_ast_t *ast,
3960 clingo_ast_attribute_t attribute, size_t *size);
3970CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_insert_string_at(clingo_ast_t *ast,
3971 clingo_ast_attribute_t attribute, size_t index,
3972 char const *value);
3973
3975
3978
3987CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3988 size_t index, clingo_ast_t **value);
3998CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
3999 size_t index, clingo_ast_t *value);
4007CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_delete_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
4008 size_t index);
4016CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_size_ast_array(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
4017 size_t *size);
4027CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_insert_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute,
4028 size_t index, clingo_ast_t *value);
4029
4031
4034
4040typedef bool (*clingo_ast_callback_t)(clingo_ast_t *ast, void *data);
4055CLINGO_VISIBILITY_DEFAULT bool clingo_ast_parse_string(char const *program, clingo_ast_callback_t callback,
4056 void *callback_data, clingo_control_t *control,
4057 clingo_logger_t logger, void *logger_data,
4058 unsigned message_limit);
4077CLINGO_VISIBILITY_DEFAULT bool clingo_ast_parse_files(char const *const *files, size_t size,
4078 clingo_ast_callback_t callback, void *callback_data,
4079 clingo_control_t *control, clingo_logger_t logger,
4080 void *logger_data, unsigned message_limit);
4081
4083
4085typedef struct clingo_program_builder clingo_program_builder_t;
4086
4089
4097CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_init(clingo_control_t *control,
4098 clingo_program_builder_t **builder);
4103CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_begin(clingo_program_builder_t *builder);
4108CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_end(clingo_program_builder_t *builder);
4118CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_add(clingo_program_builder_t *builder, clingo_ast_t *ast);
4119
4121
4124
4133
4142CLINGO_VISIBILITY_DEFAULT bool clingo_ast_unpool(clingo_ast_t *ast, clingo_ast_unpool_type_bitset_t unpool_type,
4143 clingo_ast_callback_t callback, void *callback_data);
4144
4146
4148
4149// {{{1 extending clingo
4150
4178
4186
4189
4191typedef struct clingo_options clingo_options_t;
4192
4201typedef bool (*clingo_main_function_t)(clingo_control_t *control, char const *const *files, size_t size, void *data);
4202
4208typedef bool (*clingo_default_model_printer_t)(void *data);
4209
4219 void *printer_data, void *data);
4220
4222typedef struct clingo_application {
4223 char const *(*program_name)(void *data);
4224 char const *(*version)(void *data);
4225 unsigned (*message_limit)(void *data);
4229 bool (*register_options)(clingo_options_t *options, void *data);
4230 bool (*validate_options)(void *data);
4232
4252CLINGO_VISIBILITY_DEFAULT bool clingo_options_add(clingo_options_t *options, char const *group, char const *option,
4253 char const *description, bool (*parse)(char const *value, void *data),
4254 void *data, bool multi, char const *argument);
4266CLINGO_VISIBILITY_DEFAULT bool clingo_options_add_flag(clingo_options_t *options, char const *group, char const *option,
4267 char const *description, bool *target);
4268
4276CLINGO_VISIBILITY_DEFAULT int clingo_main(clingo_application_t *application, char const *const *arguments, size_t size,
4277 void *data);
4278
4280typedef struct clingo_script {
4286 bool (*execute)(clingo_location_t const *location, char const *code, void *data);
4296 bool (*call)(clingo_location_t const *location, char const *name, clingo_symbol_t const *arguments,
4297 size_t arguments_size, clingo_symbol_callback_t symbol_callback, void *symbol_callback_data,
4298 void *data);
4304 bool (*callable)(char const *name, bool *result, void *data);
4309 bool (*main)(clingo_control_t *control, void *data);
4312 void (*free)(void *data);
4313 char const *version;
4315
4322CLINGO_VISIBILITY_DEFAULT bool clingo_register_script(char const *name, clingo_script_t const *script, void *data);
4327CLINGO_VISIBILITY_DEFAULT char const *clingo_script_version(char const *name);
4328
4330
4331// }}}1
4332
4333#ifdef __cplusplus
4334}
4335#endif
4336
4337#endif
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_build(clingo_ast_type_t type, clingo_ast_t **ast,...)
Construct an AST of the given type.
clingo_ast_attribute_type_e
Enumeration of attributes types used by the AST.
Definition clingo.h:3540
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_string_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index, char const *value)
Set the value of an attribute of type "clingo_ast_attribute_type_string_array" at the given index.
clingo_ast_binary_operator_e
Enumeration of binary operators.
Definition clingo.h:3436
clingo_ast_unary_operator_e
Enumeration of unary operators.
Definition clingo.h:3427
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_optional_ast(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_ast_t **value)
Get the value of an attribute of type "clingo_ast_attribute_type_optional_ast".
struct clingo_ast clingo_ast_t
This struct provides a view to nodes in the AST.
Definition clingo.h:3638
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_number(clingo_ast_t *ast, clingo_ast_attribute_t attribute, int value)
Set the value of an attribute of type "clingo_ast_attribute_type_number".
int clingo_ast_type_t
Corresponding type to clingo_ast_type_e.
Definition clingo.h:3537
CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_begin(clingo_program_builder_t *builder)
Begin building a program.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_location(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_location_t *value)
Get the value of an attribute of type "clingo_ast_attribute_type_location".
int clingo_ast_theory_sequence_type_t
Corresponding type to clingo_ast_theory_sequence_type_e.
Definition clingo.h:3403
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_to_string_size(clingo_ast_t *ast, size_t *size)
Get the size of the string representation of an AST node.
clingo_ast_theory_sequence_type_e
Enumeration of theory sequence types.
Definition clingo.h:3397
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_delete_string_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index)
Remove an element from an attribute of type "clingo_ast_attribute_type_string_array" at the given ind...
int clingo_ast_unpool_type_bitset_t
Corresponding type to clingo_ast_unpool_type_e.
Definition clingo.h:4132
CLINGO_VISIBILITY_DEFAULT clingo_ast_constructors_t g_clingo_ast_constructors
A map from AST types to their constructors.
clingo_ast_unpool_type_e
Enum to configure unpooling.
Definition clingo.h:4126
clingo_ast_theory_operator_type_e
Enumeration of theory operators.
Definition clingo.h:3462
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index, clingo_ast_t **value)
Get the value of an attribute of type "clingo_ast_attribute_type_ast_array" at the given index.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_string(clingo_ast_t *ast, clingo_ast_attribute_t attribute, char const *value)
Set the value of an attribute of type "clingo_ast_attribute_type_string".
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_symbol(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_symbol_t *value)
Get the value of an attribute of type "clingo_ast_attribute_type_symbol".
clingo_ast_aggregate_function_e
Enumeration of aggregate functions.
Definition clingo.h:3451
int clingo_ast_attribute_t
Corresponding type to clingo_ast_attribute_e.
Definition clingo.h:3602
struct clingo_ast_attribute_names clingo_ast_attribute_names_t
Struct to map attributes to their string representation.
clingo_ast_comparison_operator_e
Enumeration of comparison relations.
Definition clingo.h:3406
int clingo_ast_comparison_operator_t
Corresponding type to clingo_ast_comparison_operator_e.
Definition clingo.h:3415
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_ast(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_ast_t *value)
Set the value of an attribute of type "clingo_ast_attribute_type_ast".
CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_init(clingo_control_t *control, clingo_program_builder_t **builder)
Get an object to add non-ground directives to the program.
struct clingo_ast_constructor clingo_ast_constructor_t
A lists of required attributes to construct an AST.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_insert_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index, clingo_ast_t *value)
Insert a value into an attribute of type "clingo_ast_attribute_type_ast_array" at the given index.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_insert_string_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index, char const *value)
Insert a value into an attribute of type "clingo_ast_attribute_type_string_array" at the given index.
struct clingo_ast_constructors clingo_ast_constructors_t
Struct to map AST types to lists of required attributes to construct ASTs.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_string(clingo_ast_t *ast, clingo_ast_attribute_t attribute, char const **value)
Get the value of an attribute of type "clingo_ast_attribute_type_string".
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_number(clingo_ast_t *ast, clingo_ast_attribute_t attribute, int *value)
Get the value of an attribute of type "clingo_ast_attribute_type_number".
clingo_ast_sign_e
Enumeration of signs.
Definition clingo.h:3418
CLINGO_VISIBILITY_DEFAULT void clingo_ast_release(clingo_ast_t *ast)
Decrement the reference count of an AST node.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_unpool(clingo_ast_t *ast, clingo_ast_unpool_type_bitset_t unpool_type, clingo_ast_callback_t callback, void *callback_data)
Unpool the given AST.
clingo_ast_type_e
Enumeration of AST types.
Definition clingo.h:3481
CLINGO_VISIBILITY_DEFAULT void clingo_ast_acquire(clingo_ast_t *ast)
Increment the reference count of an AST node.
int clingo_ast_attribute_type_t
Corresponding type to clingo_ast_attribute_type.
Definition clingo.h:3551
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_equal(clingo_ast_t *a, clingo_ast_t *b)
Equality compare two AST nodes.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_ast(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_ast_t **value)
Get the value of an attribute of type "clingo_ast_attribute_type_ast".
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_symbol(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_symbol_t value)
Set the value of an attribute of type "clingo_ast_attribute_type_symbol".
CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_end(clingo_program_builder_t *builder)
End building a program.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_parse_files(char const *const *files, size_t size, clingo_ast_callback_t callback, void *callback_data, clingo_control_t *control, clingo_logger_t logger, void *logger_data, unsigned message_limit)
Parse the programs in the given list of files and return an abstract syntax tree for each statement v...
int clingo_ast_theory_atom_definition_type_t
Corresponding type to clingo_ast_theory_atom_definition_type_e.
Definition clingo.h:3478
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_get_type(clingo_ast_t *ast, clingo_ast_type_t *type)
Get the type of an AST node.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_location(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_location_t const *value)
Set the value of an attribute of type "clingo_ast_attribute_type_location".
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_size_string_array(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t *size)
Get the size of an attribute of type "clingo_ast_attribute_type_string_array".
clingo_ast_theory_atom_definition_type_e
Enumeration of the theory atom types.
Definition clingo.h:3471
int clingo_ast_binary_operator_t
Corresponding type to clingo_ast_binary_operator_e.
Definition clingo.h:3448
struct clingo_ast_argument clingo_ast_argument_t
Struct to define an argument that consists of a name and a type.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index, clingo_ast_t *value)
Set the value of an attribute of type "clingo_ast_attribute_type_ast_array" at the given index.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_set_optional_ast(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_ast_t *value)
Set the value of an attribute of type "clingo_ast_attribute_type_optional_ast".
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_parse_string(char const *program, clingo_ast_callback_t callback, void *callback_data, clingo_control_t *control, clingo_logger_t logger, void *logger_data, unsigned message_limit)
Parse the given program and return an abstract syntax tree for each statement via a callback.
int clingo_ast_unary_operator_t
Corresponding type to clingo_ast_unary_operator_e.
Definition clingo.h:3433
bool(* clingo_ast_callback_t)(clingo_ast_t *ast, void *data)
Callback function to intercept AST nodes.
Definition clingo.h:4040
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_less_than(clingo_ast_t *a, clingo_ast_t *b)
Less than compare two AST nodes.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_copy(clingo_ast_t *ast, clingo_ast_t **copy)
Create a shallow copy of an AST node.
int clingo_ast_theory_operator_type_t
Corresponding type to clingo_ast_theory_operator_type_e.
Definition clingo.h:3468
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_has_attribute(clingo_ast_t *ast, clingo_ast_attribute_t attribute, bool *has_attribute)
Check if an AST has the given attribute.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_size_ast_array(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t *size)
Get the size of an attribute of type "clingo_ast_attribute_type_ast_array".
clingo_ast_attribute_e
Enumeration of attributes used by the AST.
Definition clingo.h:3554
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_deep_copy(clingo_ast_t *ast, clingo_ast_t **copy)
Create a deep copy of an AST node.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_delete_ast_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index)
Remove an element from an attribute of type "clingo_ast_attribute_type_ast_array" at the given index.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_get_string_at(clingo_ast_t *ast, clingo_ast_attribute_t attribute, size_t index, char const **value)
Get the value of an attribute of type "clingo_ast_attribute_type_string_array" at the given index.
CLINGO_VISIBILITY_DEFAULT bool clingo_program_builder_add(clingo_program_builder_t *builder, clingo_ast_t *ast)
Adds a statement to the program.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_attribute_type(clingo_ast_t *ast, clingo_ast_attribute_t attribute, clingo_ast_attribute_type_t *type)
Get the type of the given AST.
int clingo_ast_sign_t
Corresponding type to clingo_ast_sign_t.
Definition clingo.h:3424
CLINGO_VISIBILITY_DEFAULT size_t clingo_ast_hash(clingo_ast_t *ast)
Compute a hash for an AST node.
CLINGO_VISIBILITY_DEFAULT bool clingo_ast_to_string(clingo_ast_t *ast, char *string, size_t size)
Get the string representation of an AST node.
struct clingo_program_builder clingo_program_builder_t
Object to build non-ground programs.
Definition clingo.h:4085
CLINGO_VISIBILITY_DEFAULT clingo_ast_attribute_names_t g_clingo_ast_attribute_names
A map from attributes to their string representation.
int clingo_ast_aggregate_function_t
Corresponding type to clingo_ast_aggregate_function_e.
Definition clingo.h:3459
@ clingo_ast_attribute_type_location
For an attribute of type "clingo_location_t".
Definition clingo.h:3543
@ clingo_ast_attribute_type_string
For an attribute of type "char const *".
Definition clingo.h:3544
@ clingo_ast_attribute_type_optional_ast
For an attribute of type "clingo_ast_t *" that can be NULL.
Definition clingo.h:3546
@ clingo_ast_attribute_type_ast_array
For an attribute of type "clingo_ast_t **".
Definition clingo.h:3548
@ clingo_ast_attribute_type_ast
For an attribute of type "clingo_ast_t *".
Definition clingo.h:3545
@ clingo_ast_attribute_type_symbol
For an attribute of type "clingo_ast_symbol_t".
Definition clingo.h:3542
@ clingo_ast_attribute_type_number
For an attribute of type "int".
Definition clingo.h:3541
@ clingo_ast_attribute_type_string_array
For an attribute of type "char const **".
Definition clingo.h:3547
@ clingo_ast_binary_operator_and
Operator "&".
Definition clingo.h:3439
@ clingo_ast_binary_operator_xor
Operator "^".
Definition clingo.h:3437
@ clingo_ast_binary_operator_minus
Operator "-".
Definition clingo.h:3441
@ clingo_ast_binary_operator_power
Operator "**".
Definition clingo.h:3445
@ clingo_ast_binary_operator_modulo
Operator "\".
Definition clingo.h:3444
@ clingo_ast_binary_operator_or
Operator "?".
Definition clingo.h:3438
@ clingo_ast_binary_operator_plus
Operator "+".
Definition clingo.h:3440
@ clingo_ast_binary_operator_multiplication
Operator "*".
Definition clingo.h:3442
@ clingo_ast_binary_operator_division
Operator "/".
Definition clingo.h:3443
@ clingo_ast_unary_operator_absolute
Operator "|.|".
Definition clingo.h:3430
@ clingo_ast_unary_operator_negation
Operator "~".
Definition clingo.h:3429
@ clingo_ast_unary_operator_minus
Operator "-".
Definition clingo.h:3428
@ clingo_ast_theory_sequence_type_tuple
Theory tuples "(t1,...,tn)".
Definition clingo.h:3398
@ clingo_ast_theory_sequence_type_list
Theory lists "[t1,...,tn]".
Definition clingo.h:3399
@ clingo_ast_theory_sequence_type_set
Theory sets "{t1,...,tn}".
Definition clingo.h:3400
@ clingo_ast_unpool_type_condition
To only unpool conditions of conditional literals.
Definition clingo.h:4127
@ clingo_ast_unpool_type_all
To unpool everything.
Definition clingo.h:4129
@ clingo_ast_unpool_type_other
To unpool everything except conditions of conditional literals.
Definition clingo.h:4128
@ clingo_ast_theory_operator_type_unary
An unary theory operator.
Definition clingo.h:3463
@ clingo_ast_theory_operator_type_binary_left
A left associative binary operator.
Definition clingo.h:3464
@ clingo_ast_theory_operator_type_binary_right
A right associative binary operator.
Definition clingo.h:3465
@ clingo_ast_aggregate_function_min
Operator "+".
Definition clingo.h:3455
@ clingo_ast_aggregate_function_sump
Operator "&".
Definition clingo.h:3454
@ clingo_ast_aggregate_function_count
Operator "^".
Definition clingo.h:3452
@ clingo_ast_aggregate_function_sum
Operator "?".
Definition clingo.h:3453
@ clingo_ast_aggregate_function_max
Operator "-".
Definition clingo.h:3456
@ clingo_ast_comparison_operator_less_than
Operator "<".
Definition clingo.h:3408
@ clingo_ast_comparison_operator_greater_equal
Operator ">=".
Definition clingo.h:3410
@ clingo_ast_comparison_operator_less_equal
Operator "<=".
Definition clingo.h:3409
@ clingo_ast_comparison_operator_equal
Operator "==".
Definition clingo.h:3412
@ clingo_ast_comparison_operator_greater_than
Operator ">".
Definition clingo.h:3407
@ clingo_ast_comparison_operator_not_equal
Operator "!=".
Definition clingo.h:3411
@ clingo_ast_sign_no_sign
For positive literals.
Definition clingo.h:3419
@ clingo_ast_sign_negation
For negative literals (prefix "not").
Definition clingo.h:3420
@ clingo_ast_sign_double_negation
For double negated literals (prefix "not not").
Definition clingo.h:3421
@ clingo_ast_theory_atom_definition_type_any
For theory atoms that can appear in both head and body.
Definition clingo.h:3474
@ clingo_ast_theory_atom_definition_type_head
For theory atoms that can appear in the head.
Definition clingo.h:3472
@ clingo_ast_theory_atom_definition_type_body
For theory atoms that can appear in the body.
Definition clingo.h:3473
@ clingo_ast_theory_atom_definition_type_directive
For theory atoms that must not have a body.
Definition clingo.h:3475
void(* clingo_logger_t)(clingo_warning_t code, char const *message, void *data)
Callback to intercept warning messages.
Definition clingo.h:187
CLINGO_VISIBILITY_DEFAULT char const * clingo_warning_string(clingo_warning_t code)
Convert warning code into string.
CLINGO_VISIBILITY_DEFAULT void clingo_version(int *major, int *minor, int *revision)
Obtain the clingo version.
struct clingo_weighted_literal clingo_weighted_literal_t
A Literal with an associated weight.
CLINGO_VISIBILITY_DEFAULT char const * clingo_error_message()
Get the last error message set if an API call fails.
struct clingo_location clingo_location_t
Represents a source code location marking its beginning and end.
clingo_warning_e
Enumeration of warning codes.
Definition clingo.h:165
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.
uint32_t clingo_atom_t
Unsigned integer type used for aspif atoms.
Definition clingo.h:123
int clingo_error_t
Corresponding type to clingo_error_e.
Definition clingo.h:148
int clingo_warning_t
Corresponding type to clingo_warning_e.
Definition clingo.h:175
int clingo_truth_value_t
Corresponding type to clingo_truth_value_e.
Definition clingo.h:203
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.
CLINGO_VISIBILITY_DEFAULT char const * clingo_error_string(clingo_error_t code)
Convert error code into string.
clingo_truth_value_e
Represents three-valued truth values.
Definition clingo.h:197
uint32_t clingo_id_t
Unsigned integer type used in various places.
Definition clingo.h:125
clingo_error_e
Enumeration of error codes.
Definition clingo.h:140
int32_t clingo_weight_t
Signed integer type for weights in sum aggregates and minimize constraints.
Definition clingo.h:127
@ clingo_warning_atom_undefined
undefined atom in program
Definition clingo.h:168
@ clingo_warning_file_included
same file included multiple times
Definition clingo.h:169
@ clingo_warning_other
other kinds of warnings
Definition clingo.h:172
@ clingo_warning_runtime_error
to report multiple errors; a corresponding runtime error is raised later
Definition clingo.h:167
@ clingo_warning_variable_unbounded
CSP variable with unbounded domain.
Definition clingo.h:170
@ clingo_warning_operation_undefined
undefined arithmetic operation or weight of aggregate
Definition clingo.h:166
@ clingo_warning_global_variable
global variable in tuple of aggregate element
Definition clingo.h:171
@ clingo_truth_value_false
false
Definition clingo.h:200
@ clingo_truth_value_true
true
Definition clingo.h:199
@ clingo_truth_value_free
no truth value
Definition clingo.h:198
@ clingo_error_logic
wrong usage of the clingo API
Definition clingo.h:143
@ clingo_error_bad_alloc
memory could not be allocated
Definition clingo.h:144
@ clingo_error_success
successful API calls
Definition clingo.h:141
@ clingo_error_unknown
errors unrelated to clingo
Definition clingo.h:145
@ clingo_error_runtime
errors only detectable at runtime like invalid input
Definition clingo.h:142
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_at(clingo_configuration_t const *configuration, clingo_id_t key, char const *name, clingo_id_t *subkey)
Lookup a subkey under the given name.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_description(clingo_configuration_t const *configuration, clingo_id_t key, char const **description)
Get the description of an entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_root(clingo_configuration_t const *configuration, clingo_id_t *key)
Get the root key of the configuration.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_type(clingo_configuration_t const *configuration, clingo_id_t key, clingo_configuration_type_bitset_t *type)
Get the type of a key.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_get(clingo_configuration_t const *configuration, clingo_id_t key, char *value, size_t size)
Get the string value of the given entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_at(clingo_statistics_t const *statistics, uint64_t key, size_t offset, uint64_t *subkey)
Get the subkey at the given offset of an array entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_size(clingo_configuration_t const *configuration, clingo_id_t key, size_t *size)
Get the number of subkeys of a map entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_array_at(clingo_configuration_t const *configuration, clingo_id_t key, size_t offset, clingo_id_t *subkey)
Get the subkey at the given offset of an array entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_has_subkey(clingo_statistics_t const *statistics, uint64_t key, char const *name, bool *result)
Test if the given map contains a specific subkey.
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_at(clingo_statistics_t const *statistics, uint64_t key, char const *name, uint64_t *subkey)
Lookup a subkey under the given name.
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_add_subkey(clingo_statistics_t *statistics, uint64_t key, char const *name, clingo_statistics_type_t type, uint64_t *subkey)
Add a subkey with the given name.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_is_assigned(clingo_configuration_t const *configuration, clingo_id_t key, bool *assigned)
Check whether an entry has a value.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_get_size(clingo_configuration_t const *configuration, clingo_id_t key, size_t *size)
Get the size of the string value of the given entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_size(clingo_statistics_t const *statistics, uint64_t key, size_t *size)
Get the number of subkeys of a map entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_has_subkey(clingo_configuration_t const *configuration, clingo_id_t key, char const *name, bool *result)
Query whether the map has a key.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_array_size(clingo_configuration_t const *configuration, clingo_id_t key, size_t *size)
Get the size of an array entry.
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_push(clingo_statistics_t *statistics, uint64_t key, clingo_statistics_type_t type, uint64_t *subkey)
Create the subkey at the end of an array entry.
struct clingo_configuration clingo_configuration_t
Handle for to the solver configuration.
Definition clingo.h:1915
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_value_set(clingo_configuration_t *configuration, clingo_id_t key, char const *value)
Set the value of an entry.
clingo_configuration_type_e
Enumeration for entries of the configuration.
Definition clingo.h:1906
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_array_size(clingo_statistics_t const *statistics, uint64_t key, size_t *size)
Get the size of an array entry.
unsigned clingo_configuration_type_bitset_t
Bitset for values of type clingo_configuration_type_e.
Definition clingo.h:1912
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_map_subkey_name(clingo_statistics_t const *statistics, uint64_t key, size_t offset, char const **name)
Get the name associated with the offset-th subkey.
CLINGO_VISIBILITY_DEFAULT bool clingo_configuration_map_subkey_name(clingo_configuration_t const *configuration, clingo_id_t key, size_t offset, char const **name)
Get the name associated with the offset-th subkey.
@ clingo_configuration_type_map
the entry is a map
Definition clingo.h:1909
@ clingo_configuration_type_array
the entry is an array
Definition clingo.h:1908
@ clingo_configuration_type_value
the entry is a (string) value
Definition clingo.h:1907
CLINGO_VISIBILITY_DEFAULT bool clingo_control_statistics(clingo_control_t const *control, clingo_statistics_t const **statistics)
Get a statistics object to inspect solver statistics.
clingo_solve_result_e
Enumeration of bit masks for solve call results.
Definition clingo.h:2482
clingo_backend_type_e
The available backends.
Definition clingo.h:2962
CLINGO_VISIBILITY_DEFAULT bool clingo_control_symbolic_atoms(clingo_control_t const *control, clingo_symbolic_atoms_t const **atoms)
Get an object to inspect symbolic atoms (the relevant Herbrand base) used for grounding.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_assign_external(clingo_control_t *control, clingo_literal_t literal, clingo_truth_value_t value)
Assign a truth value to an external atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_get_const(clingo_control_t const *control, char const *name, clingo_symbol_t *symbol)
Return the symbol for a constant definition of form: #const name = symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_register_backend(clingo_control_t *control, clingo_backend_type_t type, char const *file, bool replace)
Register a backend with the control object.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_remove_minimize(clingo_control_t *control)
Remove minimize constraints from the program.
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.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_configuration(clingo_control_t *control, clingo_configuration_t **configuration)
Get a configuration object to change the solver configuration.
struct clingo_part clingo_part_t
Struct used to specify the program parts that have to be grounded.
unsigned clingo_backend_type_t
Corresponding type to clingo_backend_type_e.
Definition clingo.h:2970
CLINGO_VISIBILITY_DEFAULT bool clingo_control_register_propagator(clingo_control_t *control, clingo_propagator_t const *propagator, void *data, bool sequential)
Register a custom propagator with the control object.
unsigned clingo_solve_result_bitset_t
Corresponding type to clingo_solve_result_e.
Definition clingo.h:2488
CLINGO_VISIBILITY_DEFAULT bool clingo_control_backend(clingo_control_t *control, clingo_backend_t **backend)
Get an object to add ground directives to the program.
CLINGO_VISIBILITY_DEFAULT void clingo_control_interrupt(clingo_control_t *control)
Interrupt the active solve call (or the following solve call right at the beginning).
CLINGO_VISIBILITY_DEFAULT bool clingo_control_clasp_facade(clingo_control_t *control, void **clasp)
Get low-level access to clasp.
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 bool clingo_control_set_enable_cleanup(clingo_control_t *control, bool enable)
Enable automatic cleanup after solving.
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_release_external(clingo_control_t *control, clingo_literal_t literal)
Release an external atom.
bool(* clingo_ground_callback_t)(clingo_location_t const *location, char const *name, clingo_symbol_t const *arguments, size_t arguments_size, void *data, clingo_symbol_callback_t symbol_callback, void *symbol_callback_data)
Callback function to implement external functions.
Definition clingo.h:2954
CLINGO_VISIBILITY_DEFAULT bool clingo_control_get_enable_cleanup(clingo_control_t *control)
Check whether automatic cleanup is enabled.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_load_aspif(clingo_control_t *control, char const **files, size_t size)
Load files in aspif format.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_update_project(clingo_control_t *control, clingo_atom_t const *atoms, size_t size, bool append)
Add to or replace the set of projection variables.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_register_observer(clingo_control_t *control, clingo_ground_program_observer_t const *observer, bool replace, void *data)
Register a program observer with the control object.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_set_enable_enumeration_assumption(clingo_control_t *control, bool enable)
Configure how learnt constraints are handled during enumeration.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_get_enable_enumeration_assumption(clingo_control_t *control)
Check whether the enumeration assumption is enabled.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_cleanup(clingo_control_t *control)
Clean up the domains of the grounding component using the solving component's top level assignment.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_has_const(clingo_control_t const *control, char const *name, bool *exists)
Check if there is a constant definition for the given constant.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_load(clingo_control_t *control, char const *file)
Extend the logic program with a program in a file.
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.
CLINGO_VISIBILITY_DEFAULT bool clingo_control_is_conflicting(clingo_control_t const *control)
Check if the solver has determined that the internal program representation is conflicting.
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_solve_result_satisfiable
The last solve call found a solution.
Definition clingo.h:2483
@ clingo_solve_result_interrupted
The last solve call was interrupted.
Definition clingo.h:2486
@ clingo_solve_result_exhausted
The last solve call completely exhausted the search space.
Definition clingo.h:2485
@ clingo_solve_result_unsatisfiable
The last solve call did not find a solution.
Definition clingo.h:2484
@ clingo_backend_type_smodels
the smodels backend
Definition clingo.h:2967
@ clingo_backend_type_reify_sccs
whether to reify sccs
Definition clingo.h:2964
@ clingo_backend_type_aspif
the aspif backend
Definition clingo.h:2966
@ clingo_backend_type_reify
the reify backend
Definition clingo.h:2963
@ clingo_backend_type_reify_steps
whether to reify steps individually
Definition clingo.h:2965
struct clingo_script clingo_script_t
Custom scripting language to run functions during grounding.
bool(* clingo_default_model_printer_t)(void *data)
Callback to print a model in default format.
Definition clingo.h:4208
struct clingo_options clingo_options_t
Object to add command-line options.
Definition clingo.h:4191
bool(* clingo_main_function_t)(clingo_control_t *control, char const *const *files, size_t size, void *data)
Callback to customize clingo main function.
Definition clingo.h:4201
CLINGO_VISIBILITY_DEFAULT bool clingo_options_add_flag(clingo_options_t *options, char const *group, char const *option, char const *description, bool *target)
Add an option that is a simple flag.
bool(* clingo_model_printer_t)(clingo_model_t const *model, clingo_default_model_printer_t printer, void *printer_data, void *data)
Callback to customize model printing.
Definition clingo.h:4218
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_register_script(char const *name, clingo_script_t const *script, void *data)
Add a custom scripting language to clingo.
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.
CLINGO_VISIBILITY_DEFAULT char const * clingo_script_version(char const *name)
Get the version of the registered scripting language.
struct clingo_application clingo_application_t
This struct contains a set of functions to customize the clingo application.
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_control_add_clause(clingo_solve_control_t *control, clingo_literal_t const *clause, size_t size)
Add a clause that applies to the current solving step during model enumeration.
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_is_true(clingo_model_t const *model, clingo_literal_t literal, bool *result)
Check if a program literal is true in a model.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_context(clingo_model_t const *model, clingo_solve_control_t **control)
Get the associated solve control object of a model.
int clingo_model_type_t
Corresponding type to clingo_model_type_e.
Definition clingo.h:2289
clingo_model_type_e
Enumeration for the different model types.
Definition clingo.h:2283
CLINGO_VISIBILITY_DEFAULT bool clingo_model_contains(clingo_model_t const *model, clingo_symbol_t atom, bool *contained)
Constant time lookup to test whether an atom is in a model.
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_control_symbolic_atoms(clingo_solve_control_t const *control, clingo_symbolic_atoms_t const **atoms)
Get an object to inspect the symbolic atoms.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_thread_id(clingo_model_t const *model, clingo_id_t *id)
Get the id of the solver thread that found 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.
clingo_show_type_e
Enumeration of bit flags to select symbols in models.
Definition clingo.h:2292
CLINGO_VISIBILITY_DEFAULT bool clingo_model_is_consequence(clingo_model_t const *model, clingo_literal_t literal, clingo_consequence_t *result)
Check if the given literal is a consequence.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_cost_size(clingo_model_t const *model, size_t *size)
Get the number of cost values of a model.
clingo_consequence_e
Enumeration for the different consequence types.
Definition clingo.h:2305
CLINGO_VISIBILITY_DEFAULT bool clingo_model_optimality_proven(clingo_model_t const *model, bool *proven)
Whether the optimality of a model has been proven.
struct clingo_model clingo_model_t
Object representing a model.
Definition clingo.h:2280
struct clingo_solve_control clingo_solve_control_t
Object to add clauses during search.
Definition clingo.h:2277
CLINGO_VISIBILITY_DEFAULT bool clingo_model_type(clingo_model_t const *model, clingo_model_type_t *type)
Get the type of the model.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_extend(clingo_model_t *model, clingo_symbol_t const *symbols, size_t size)
Add symbols to the model.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_cost(clingo_model_t const *model, int64_t *costs, size_t size)
Get the cost vector of a model.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_number(clingo_model_t const *model, uint64_t *number)
Get the running number of the model.
CLINGO_VISIBILITY_DEFAULT bool clingo_model_priority(clingo_model_t const *model, clingo_weight_t *priorities, size_t size)
Get the priorities of the costs.
unsigned clingo_show_type_bitset_t
Corresponding type to clingo_show_type_e.
Definition clingo.h:2302
@ clingo_model_type_stable_model
The model represents a stable model.
Definition clingo.h:2284
@ clingo_model_type_cautious_consequences
The model represents a set of cautious consequences.
Definition clingo.h:2286
@ clingo_model_type_brave_consequences
The model represents a set of brave consequences.
Definition clingo.h:2285
@ clingo_show_type_theory
Select symbols added by theory.
Definition clingo.h:2296
@ clingo_show_type_terms
Select all terms.
Definition clingo.h:2295
@ clingo_show_type_complement
Select false instead of true atoms (clingo_show_type_atoms) or terms (clingo_show_type_terms).
Definition clingo.h:2298
@ clingo_show_type_shown
Select shown atoms and terms.
Definition clingo.h:2293
@ clingo_show_type_all
Select everything.
Definition clingo.h:2297
@ clingo_show_type_atoms
Select all atoms.
Definition clingo.h:2294
@ clingo_consequence_false
The literal is not a consequence.
Definition clingo.h:2306
@ clingo_consequence_true
The literal is a consequence.
Definition clingo.h:2307
@ clingo_consequence_unknown
The literal might or might not be a consequence.
Definition clingo.h:2308
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_project(clingo_backend_t *backend, clingo_atom_t const *atoms, size_t size)
Add a projection directive.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_symbol(clingo_backend_t *backend, clingo_symbol_t symbol, clingo_id_t *term_id)
Convert the given symbol into a theory term.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_atom_with_guard(clingo_backend_t *backend, clingo_atom_t atom, clingo_id_t term_id, clingo_id_t const *elements, size_t size, char const *operator_name, clingo_id_t right_hand_side_id, clingo_atom_t *atom_id)
Add a theory atom with a guard.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_string(clingo_backend_t *backend, char const *string, clingo_id_t *term_id)
Add a theory term representing a string.
clingo_comment_type_e
Enumeration of comment types.
Definition clingo.h:1611
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_atom(clingo_backend_t *backend, clingo_atom_t atom, clingo_id_t term_id, clingo_id_t const *elements, size_t size, clingo_atom_t *atom_id)
Add a theory atom without a guard.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_add_atom(clingo_backend_t *backend, clingo_symbol_t *symbol, clingo_atom_t *atom)
Get a fresh atom to be used in aspif directives.
struct clingo_backend clingo_backend_t
Handle to the backend to add directives in aspif format.
Definition clingo.h:1654
int clingo_comment_type_t
Corresponding type to clingo_theory_sequence_type_e.
Definition clingo.h:1616
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_begin(clingo_backend_t *backend)
Prepare the backend for usage.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_assume(clingo_backend_t *backend, clingo_literal_t const *literals, size_t size)
Add an assumption directive.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_number(clingo_backend_t *backend, int number, clingo_id_t *term_id)
Add a numeric theory term.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_function(clingo_backend_t *backend, char const *name, clingo_id_t const *arguments, size_t size, clingo_id_t *term_id)
Add a theory term representing a function.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_rule(clingo_backend_t *backend, bool choice, clingo_atom_t const *head, size_t head_size, clingo_literal_t const *body, size_t body_size)
Add a rule to the program.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_heuristic(clingo_backend_t *backend, clingo_atom_t atom, clingo_heuristic_type_t type, int bias, unsigned priority, clingo_literal_t const *condition, size_t size)
Add a heuristic directive.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_weight_rule(clingo_backend_t *backend, bool choice, clingo_atom_t const *head, size_t head_size, clingo_weight_t lower_bound, clingo_weighted_literal_t const *body, size_t body_size)
Add a weight rule to the program.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_minimize(clingo_backend_t *backend, clingo_weight_t priority, clingo_weighted_literal_t const *literals, size_t size)
Add a minimize constraint (or weak constraint) to the program.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_term_sequence(clingo_backend_t *backend, clingo_theory_sequence_type_t type, clingo_id_t const *arguments, size_t size, clingo_id_t *term_id)
Add a theory term representing a sequence of theory terms.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_acyc_edge(clingo_backend_t *backend, int node_u, int node_v, clingo_literal_t const *condition, size_t size)
Add an edge directive.
clingo_theory_sequence_type_e
Enumeration of theory sequence types.
Definition clingo.h:1619
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_theory_element(clingo_backend_t *backend, clingo_id_t const *tuple, size_t tuple_size, clingo_literal_t const *condition, size_t condition_size, clingo_id_t *element_id)
Add a theory atom element.
int clingo_theory_sequence_type_t
Corresponding type to clingo_theory_sequence_type_e.
Definition clingo.h:1625
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_end(clingo_backend_t *backend)
Finalize the backend after using it.
CLINGO_VISIBILITY_DEFAULT bool clingo_backend_external(clingo_backend_t *backend, clingo_atom_t atom, clingo_external_type_t type)
Add an external statement.
@ clingo_comment_type_line
Comments.
Definition clingo.h:1612
@ clingo_comment_type_block
Block comments.
Definition clingo.h:1613
@ clingo_theory_sequence_type_list
Theory lists "[t1,...,tn]".
Definition clingo.h:1622
@ clingo_theory_sequence_type_tuple
Theory tuples "(t1,...,tn)".
Definition clingo.h:1620
@ clingo_theory_sequence_type_set
Theory sets "{t1,...,tn}".
Definition clingo.h:1621
clingo_heuristic_type_e
Enumeration of different heuristic modifiers.
Definition clingo.h:1629
int clingo_external_type_t
Corresponding type to clingo_external_type_e.
Definition clingo.h:1651
clingo_external_type_e
Enumeration of different external statements.
Definition clingo.h:1643
struct clingo_ground_program_observer clingo_ground_program_observer_t
An instance of this struct has to be registered with a solver to observe ground directives as they ar...
int clingo_heuristic_type_t
Corresponding type to clingo_heuristic_type_e.
Definition clingo.h:1639
@ clingo_heuristic_type_false
set the level of an atom and choose a negative sign
Definition clingo.h:1635
@ clingo_heuristic_type_init
modify the initial VSIDS score of an atom
Definition clingo.h:1633
@ clingo_heuristic_type_true
set the level of an atom and choose a positive sign
Definition clingo.h:1634
@ clingo_heuristic_type_factor
modify VSIDS factor of an atom
Definition clingo.h:1632
@ clingo_heuristic_type_level
set the level of an atom
Definition clingo.h:1630
@ clingo_heuristic_type_sign
configure which sign to chose for an atom
Definition clingo.h:1631
@ clingo_external_type_free
allow an external to be assigned freely
Definition clingo.h:1644
@ clingo_external_type_true
assign an external to true
Definition clingo.h:1645
@ clingo_external_type_false
assign an external to false
Definition clingo.h:1646
@ clingo_external_type_release
no longer treat an atom as external
Definition clingo.h:1647
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_has_conflict(clingo_assignment_t const *assignment)
Check if the given assignment is conflicting.
CLINGO_VISIBILITY_DEFAULT clingo_id_t clingo_propagate_control_thread_id(clingo_propagate_control_t const *control)
Get the id of the underlying solver thread.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_has_watch(clingo_propagate_control_t const *control, clingo_literal_t literal)
Check whether a literal is watched in the current solver thread.
CLINGO_VISIBILITY_DEFAULT clingo_assignment_t const * clingo_propagate_init_assignment(clingo_propagate_init_t const *init)
Get the top level assignment solver.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_truth_value(clingo_assignment_t const *assignment, clingo_literal_t literal, clingo_truth_value_t *value)
Determine the truth value of a given literal.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_add_watch(clingo_propagate_control_t *control, clingo_literal_t literal)
Add a watch for the solver literal in the given phase.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_fixed(clingo_assignment_t const *assignment, clingo_literal_t literal, bool *is_fixed)
Check if a literal has a fixed truth value.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_solver_literal(clingo_propagate_init_t const *init, clingo_literal_t aspif_literal, clingo_literal_t *solver_literal)
Map the given program literal or condition id to its solver literal.
struct clingo_propagate_control clingo_propagate_control_t
This object can be used to add clauses and propagate literals while solving.
Definition clingo.h:1373
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_begin(clingo_assignment_t const *assignment, uint32_t level, uint32_t *offset)
Returns the offset of the decision literal with the given decision level in the trail.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_propagate(clingo_propagate_control_t *control, bool *result)
Propagate implied literals (resulting from added clauses).
CLINGO_VISIBILITY_DEFAULT void clingo_propagate_init_set_undo_mode(clingo_propagate_init_t *init, clingo_propagator_undo_mode_t mode)
Configure when to call the undo method of the propagator.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_theory_atoms(clingo_propagate_init_t const *init, clingo_theory_atoms_t const **atoms)
Get an object to inspect the theory atoms.
int clingo_weight_constraint_type_t
Corresponding type to clingo_weight_constraint_type_e.
Definition clingo.h:1156
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_end(clingo_assignment_t const *assignment, uint32_t level, uint32_t *offset)
Returns the offset following the last literal with the given decision level.
CLINGO_VISIBILITY_DEFAULT uint32_t clingo_assignment_decision_level(clingo_assignment_t const *assignment)
Get the current decision level.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_add_clause(clingo_propagate_control_t *control, clingo_literal_t const *clause, size_t size, clingo_clause_type_t type, bool *result)
Add the given clause to the solver.
void(* clingo_propagator_undo_callback_t)(clingo_propagate_control_t const *, clingo_literal_t const *, size_t, void *)
Typedef for clingo_propagator::undo().
Definition clingo.h:1472
int clingo_propagator_undo_mode_t
Corresponding type to clingo_propagator_undo_mode_e.
Definition clingo.h:1147
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_false(clingo_assignment_t const *assignment, clingo_literal_t literal, bool *is_false)
Check if a literal has a fixed truth value.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_watch_to_thread(clingo_propagate_init_t *init, clingo_literal_t solver_literal, clingo_id_t thread_id)
Add a watch for the solver literal in the given phase to the given solver thread.
CLINGO_VISIBILITY_DEFAULT int clingo_propagate_init_number_of_threads(clingo_propagate_init_t const *init)
Get the number of threads used in subsequent solving.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_literal(clingo_propagate_init_t *init, bool freeze, clingo_literal_t *result)
Add a literal to the solver.
CLINGO_VISIBILITY_DEFAULT void clingo_propagate_control_remove_watch(clingo_propagate_control_t *control, clingo_literal_t literal)
Removes the watch (if any) for the given solver literal.
struct clingo_assignment clingo_assignment_t
Represents a (partial) assignment of a particular solver.
Definition clingo.h:988
struct clingo_propagate_init clingo_propagate_init_t
Object to initialize a user-defined propagator before each solving step.
Definition clingo.h:1169
bool(* clingo_propagator_init_callback_t)(clingo_propagate_init_t *, void *)
Typedef for clingo_propagator::init().
Definition clingo.h:1465
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_size(clingo_assignment_t const *assignment, uint32_t *size)
Returns the number of literals in the trail, i.e., the number of assigned literals.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_symbolic_atoms(clingo_propagate_init_t const *init, clingo_symbolic_atoms_t const **atoms)
Get an object to inspect the symbolic atoms.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_trail_at(clingo_assignment_t const *assignment, uint32_t offset, clingo_literal_t *literal)
Returns the literal at the given position in the trail.
CLINGO_VISIBILITY_DEFAULT clingo_propagator_undo_mode_t clingo_propagate_init_get_undo_mode(clingo_propagate_init_t const *init)
Get the current undo mode of the propagator.
int clingo_propagator_check_mode_t
Corresponding type to clingo_propagator_check_mode_e.
Definition clingo.h:1139
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_propagate(clingo_propagate_init_t *init, bool *result)
Propagates consequences of the underlying problem excluding registered propagators.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_control_add_literal(clingo_propagate_control_t *control, clingo_literal_t *result)
Adds a new volatile literal to the underlying solver thread.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_remove_watch(clingo_propagate_init_t *init, clingo_literal_t solver_literal)
Remove the watch for the solver literal in the given phase.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_decision(clingo_assignment_t const *assignment, uint32_t level, clingo_literal_t *literal)
Determine the decision literal given a decision level.
bool(* clingo_propagator_check_callback_t)(clingo_propagate_control_t *, void *)
Typedef for clingo_propagator::check().
Definition clingo.h:1476
CLINGO_VISIBILITY_DEFAULT void clingo_propagate_init_set_check_mode(clingo_propagate_init_t *init, clingo_propagator_check_mode_t mode)
Configure when to call the check method of the propagator.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_weight_constraint(clingo_propagate_init_t *init, clingo_literal_t literal, clingo_weighted_literal_t const *literals, size_t size, clingo_weight_t bound, clingo_weight_constraint_type_t type, bool compare_equal, bool *result)
Add the given weight constraint to the solver.
CLINGO_VISIBILITY_DEFAULT clingo_assignment_t const * clingo_propagate_control_assignment(clingo_propagate_control_t const *control)
Get the assignment associated with the underlying solver.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_true(clingo_assignment_t const *assignment, clingo_literal_t literal, bool *is_true)
Check if a literal is true.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_is_total(clingo_assignment_t const *assignment)
Check if the assignment is total, i.e.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_watch(clingo_propagate_init_t *init, clingo_literal_t solver_literal)
Add a watch for the solver literal in the given phase.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_remove_watch_from_thread(clingo_propagate_init_t *init, clingo_literal_t solver_literal, uint32_t thread_id)
Remove the watch for the solver literal in the given phase from the given solver thread.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_freeze_literal(clingo_propagate_init_t *init, clingo_literal_t solver_literal)
Freeze the given solver literal.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_at(clingo_assignment_t const *assignment, size_t offset, clingo_literal_t *literal)
The (positive) literal at the given offset in the assignment.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_has_literal(clingo_assignment_t const *assignment, clingo_literal_t literal)
Check if the given literal is part of a (partial) assignment.
clingo_propagator_check_mode_e
Supported check modes for propagators.
Definition clingo.h:1131
int clingo_clause_type_t
Corresponding type to clingo_clause_type_e.
Definition clingo.h:1370
clingo_clause_type_e
Enumeration of clause types determining the lifetime of a clause.
Definition clingo.h:1361
clingo_propagator_undo_mode_e
Undo modes for propagators.
Definition clingo.h:1142
struct clingo_propagator clingo_propagator_t
An instance of this struct has to be registered with a solver to implement a custom propagator.
CLINGO_VISIBILITY_DEFAULT uint32_t clingo_assignment_root_level(clingo_assignment_t const *assignment)
Get the current root level.
CLINGO_VISIBILITY_DEFAULT bool clingo_assignment_level(clingo_assignment_t const *assignment, clingo_literal_t literal, uint32_t *level)
Determine the decision level of a given literal.
CLINGO_VISIBILITY_DEFAULT clingo_propagator_check_mode_t clingo_propagate_init_get_check_mode(clingo_propagate_init_t const *init)
Get the current check mode of the propagator.
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_minimize(clingo_propagate_init_t *init, clingo_literal_t literal, clingo_weight_t weight, clingo_weight_t priority)
Add the given literal to minimize to the solver.
CLINGO_VISIBILITY_DEFAULT size_t clingo_assignment_size(clingo_assignment_t const *assignment)
The number of (positive) literals in the assignment.
bool(* clingo_propagator_propagate_callback_t)(clingo_propagate_control_t *, clingo_literal_t const *, size_t, void *)
Typedef for clingo_propagator::propagate().
Definition clingo.h:1468
CLINGO_VISIBILITY_DEFAULT bool clingo_propagate_init_add_clause(clingo_propagate_init_t *init, clingo_literal_t const *clause, size_t size, bool *result)
Add the given clause to the solver.
clingo_weight_constraint_type_e
Enumeration of weight_constraint_types.
Definition clingo.h:1150
@ clingo_propagator_check_mode_both
call clingo_propagator::check() on propagation fixpoints and total assignments
Definition clingo.h:1135
@ clingo_propagator_check_mode_none
do not call clingo_propagator::check() at all
Definition clingo.h:1132
@ clingo_propagator_check_mode_fixpoint
call clingo_propagator::check() on propagation fixpoints
Definition clingo.h:1134
@ clingo_propagator_check_mode_total
call clingo_propagator::check() on total assignments
Definition clingo.h:1133
@ clingo_clause_type_learnt
clause is subject to the solvers deletion policy
Definition clingo.h:1362
@ clingo_clause_type_volatile
like clingo_clause_type_learnt but the clause is deleted after a solving step
Definition clingo.h:1364
@ clingo_clause_type_static
clause is not subject to the solvers deletion policy
Definition clingo.h:1363
@ clingo_clause_type_volatile_static
like clingo_clause_type_static but the clause is deleted after a solving step
Definition clingo.h:1366
@ clingo_propagator_undo_mode_default
call clingo_propagator::undo() for non-empty change lists
Definition clingo.h:1143
@ clingo_propagator_undo_mode_always
also call clingo_propagator::check() when check has been called
Definition clingo.h:1144
@ clingo_weight_constraint_type_implication_right
the literal implies the weight constraint
Definition clingo.h:1152
@ clingo_weight_constraint_type_implication_left
the weight constraint implies the literal
Definition clingo.h:1151
@ clingo_weight_constraint_type_equivalence
the weight constraint is equivalent to the literal
Definition clingo.h:1153
struct clingo_solve_handle clingo_solve_handle_t
Search handle to a solve call.
Definition clingo.h:2564
unsigned clingo_solve_event_type_t
Corresponding type to clingo_solve_event_type_e.
Definition clingo.h:2541
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_cancel(clingo_solve_handle_t *handle)
Stop the running search and block until done.
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_close(clingo_solve_handle_t *handle)
Stops the running search and releases the handle.
clingo_solve_mode_e
Enumeration of solve modes.
Definition clingo.h:2526
bool(* clingo_solve_event_callback_t)(clingo_solve_event_type_t type, void *event, void *data, bool *goon)
Callback function called during search to notify when the search is finished or a model is ready.
Definition clingo.h:2559
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_core(clingo_solve_handle_t *handle, clingo_literal_t const **core, size_t *size)
When a problem is unsatisfiable, get a subset of the assumptions that made the problem unsatisfiable.
CLINGO_VISIBILITY_DEFAULT void clingo_solve_handle_wait(clingo_solve_handle_t *handle, double timeout, bool *result)
Wait for the specified amount of time to check if the next result is ready.
clingo_solve_event_type_e
Enumeration of solve events.
Definition clingo.h:2534
unsigned clingo_solve_mode_bitset_t
Corresponding type to clingo_solve_mode_e.
Definition clingo.h:2531
CLINGO_VISIBILITY_DEFAULT bool clingo_solve_handle_last(clingo_solve_handle_t *handle, clingo_model_t const **model)
When a problem is satisfiable and the search is finished, get the last computed model.
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_solve_mode_async
Enable non-blocking search.
Definition clingo.h:2527
@ clingo_solve_event_type_unsat
Issued if an optimization problem is found unsatisfiable.
Definition clingo.h:2536
@ clingo_solve_event_type_finish
Issued if the search has completed.
Definition clingo.h:2538
@ clingo_solve_event_type_statistics
Issued when the statistics can be updated.
Definition clingo.h:2537
@ clingo_solve_event_type_model
Issued if a model is found.
Definition clingo.h:2535
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_value_set(clingo_statistics_t *statistics, uint64_t key, double value)
Set the value of the given entry.
int clingo_statistics_type_t
Corresponding type to clingo_statistics_type.
Definition clingo.h:2109
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_root(clingo_statistics_t const *statistics, uint64_t *key)
Get the root key of the statistics.
clingo_statistics_type_e
Enumeration for entries of the statistics.
Definition clingo.h:2102
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_value_get(clingo_statistics_t const *statistics, uint64_t key, double *value)
Get the value of the given entry.
struct clingo_statistic clingo_statistics_t
Handle for the solver statistics.
Definition clingo.h:2112
CLINGO_VISIBILITY_DEFAULT bool clingo_statistics_type(clingo_statistics_t const *statistics, uint64_t key, clingo_statistics_type_t *type)
Get the type of a key.
@ clingo_statistics_type_map
the entry is a map
Definition clingo.h:2106
@ clingo_statistics_type_array
the entry is an array
Definition clingo.h:2105
@ clingo_statistics_type_empty
the entry is invalid (has neither of the types below)
Definition clingo.h:2103
@ clingo_statistics_type_value
the entry is a (double) value
Definition clingo.h:2104
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_is_external(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t iterator, bool *external)
Check whether an atom is external.
uint64_t clingo_symbolic_atom_iterator_t
Object to iterate over symbolic atoms.
Definition clingo.h:556
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_signatures_size(clingo_symbolic_atoms_t const *atoms, size_t *size)
Get the number of different predicate signatures used in the program.
bool(* clingo_symbol_callback_t)(clingo_symbol_t const *symbols, size_t symbols_size, void *data)
Callback function to inject symbols.
Definition clingo.h:693
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_iterator_is_equal_to(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t a, clingo_symbolic_atom_iterator_t b, bool *equal)
Check if two iterators point to the same element (or end of the sequence).
struct clingo_symbolic_atoms clingo_symbolic_atoms_t
Object to inspect symbolic atoms in a program—the relevant Herbrand base gringo uses to instantiate p...
Definition clingo.h:546
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_literal(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t iterator, clingo_literal_t *literal)
Returns the (numeric) aspif literal corresponding to the given symbolic atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_next(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t iterator, clingo_symbolic_atom_iterator_t *next)
Get an iterator to the next element in the sequence of symbolic atoms.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_size(clingo_symbolic_atoms_t const *atoms, size_t *size)
Get the number of different atoms occurring in a logic program.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_signatures(clingo_symbolic_atoms_t const *atoms, clingo_signature_t *signatures, size_t size)
Get the predicate signatures occurring in a logic program.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_is_valid(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t iterator, bool *valid)
Check whether the given iterator points to some element with the sequence of symbolic atoms or to the...
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_is_fact(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t iterator, bool *fact)
Check whether an atom is a fact.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_symbol(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t iterator, clingo_symbol_t *symbol)
Get the symbolic representation of an atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_end(clingo_symbolic_atoms_t const *atoms, clingo_symbolic_atom_iterator_t *iterator)
Iterator pointing to the end of the sequence of symbolic atoms.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_find(clingo_symbolic_atoms_t const *atoms, clingo_symbol_t symbol, clingo_symbolic_atom_iterator_t *iterator)
Find a symbolic atom given its symbolic representation.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbolic_atoms_begin(clingo_symbolic_atoms_t const *atoms, clingo_signature_t const *signature, clingo_symbolic_atom_iterator_t *iterator)
Get a forward iterator to the beginning of the sequence of all symbolic atoms optionally restricted t...
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_negative(clingo_symbol_t symbol, bool *negative)
Check if a function is negative (has a sign).
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_number(clingo_symbol_t symbol, int *number)
Get the number of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_signature_is_equal_to(clingo_signature_t a, clingo_signature_t b)
Check if two signatures are equal.
uint64_t clingo_signature_t
Represents a predicate signature.
Definition clingo.h:254
CLINGO_VISIBILITY_DEFAULT size_t clingo_symbol_hash(clingo_symbol_t symbol)
Calculate a hash code of a symbol.
CLINGO_VISIBILITY_DEFAULT size_t clingo_signature_hash(clingo_signature_t signature)
Calculate a hash code of a signature.
CLINGO_VISIBILITY_DEFAULT bool clingo_signature_create(char const *name, uint32_t arity, bool positive, clingo_signature_t *signature)
Create a new signature.
CLINGO_VISIBILITY_DEFAULT bool clingo_signature_is_negative(clingo_signature_t signature)
Whether the signature is negative (is classically negated).
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_positive(clingo_symbol_t symbol, bool *positive)
Check if a function is positive (does not have a sign).
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_equal_to(clingo_symbol_t a, clingo_symbol_t b)
Check if two symbols are equal.
CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_infimum(clingo_symbol_t *symbol)
Construct a symbol representing #inf.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_id(char const *name, bool positive, clingo_symbol_t *symbol)
Construct a symbol representing an id.
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).
clingo_symbol_type_e
Enumeration of available symbol types.
Definition clingo.h:316
uint64_t clingo_symbol_t
Represents a symbol.
Definition clingo.h:330
CLINGO_VISIBILITY_DEFAULT clingo_symbol_type_t clingo_symbol_type(clingo_symbol_t symbol)
Get the type of a symbol.
CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_supremum(clingo_symbol_t *symbol)
Construct a symbol representing #sup.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_name(clingo_symbol_t symbol, char const **name)
Get the name of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_add_string(char const *string, char const **result)
Internalize a string.
CLINGO_VISIBILITY_DEFAULT bool clingo_signature_is_positive(clingo_signature_t signature)
Whether the signature is positive (is not classically negated).
int clingo_symbol_type_t
Corresponding type to clingo_symbol_type.
Definition clingo.h:324
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_arguments(clingo_symbol_t symbol, clingo_symbol_t const **arguments, size_t *arguments_size)
Get the arguments of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_string(char const *string, clingo_symbol_t *symbol)
Construct a symbol representing a string.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_string(clingo_symbol_t symbol, char const **string)
Get the string of a symbol.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_create_function(char const *name, clingo_symbol_t const *arguments, size_t arguments_size, bool positive, clingo_symbol_t *symbol)
Construct a symbol representing a function or tuple.
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_signature_is_less_than(clingo_signature_t a, clingo_signature_t b)
Check if a signature is less than another signature.
CLINGO_VISIBILITY_DEFAULT uint32_t clingo_signature_arity(clingo_signature_t signature)
Get the arity of a signature.
CLINGO_VISIBILITY_DEFAULT bool clingo_parse_term(char const *string, clingo_logger_t logger, void *logger_data, unsigned message_limit, clingo_symbol_t *symbol)
Parse a term in string form.
CLINGO_VISIBILITY_DEFAULT char const * clingo_signature_name(clingo_signature_t signature)
Get the name of a signature.
CLINGO_VISIBILITY_DEFAULT bool clingo_symbol_is_less_than(clingo_symbol_t a, clingo_symbol_t b)
Check if a symbol is less than another symbol.
CLINGO_VISIBILITY_DEFAULT void clingo_symbol_create_number(int number, clingo_symbol_t *symbol)
Construct a symbol representing a number.
@ clingo_symbol_type_number
a numeric symbol, e.g., 1
Definition clingo.h:318
@ clingo_symbol_type_string
a string symbol, e.g., "a"
Definition clingo.h:319
@ clingo_symbol_type_function
a numeric symbol, e.g., c, (1, "a"), or f(1,"a")
Definition clingo.h:320
@ clingo_symbol_type_supremum
the #sup symbol
Definition clingo.h:321
@ clingo_symbol_type_infimum
the #inf symbol
Definition clingo.h:317
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_guard(clingo_theory_atoms_t const *atoms, clingo_id_t atom, char const **connective, clingo_id_t *term)
Get the guard consisting of a theory operator and a theory term of the given theory atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_to_string(clingo_theory_atoms_t const *atoms, clingo_id_t atom, char *string, size_t size)
Get the string representation of the given theory atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_condition_id(clingo_theory_atoms_t const *atoms, clingo_id_t element, clingo_literal_t *condition)
Get the id of the condition of the given theory element.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_arguments(clingo_theory_atoms_t const *atoms, clingo_id_t term, clingo_id_t const **arguments, size_t *size)
Get the arguments of the given function theory term.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_to_string(clingo_theory_atoms_t const *atoms, clingo_id_t element, char *string, size_t size)
Get the string representation of the given theory element.
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.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_to_string_size(clingo_theory_atoms_t const *atoms, clingo_id_t element, size_t *size)
Get the size of the string representation of the given theory element (including the terminating 0).
clingo_theory_term_type_e
Enumeration of theory term types.
Definition clingo.h:738
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_to_string(clingo_theory_atoms_t const *atoms, clingo_id_t term, char *string, size_t size)
Get the string representation of the given theory term.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_to_string_size(clingo_theory_atoms_t const *atoms, clingo_id_t term, size_t *size)
Get the size of the string representation of the given theory term (including the terminating 0).
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_type(clingo_theory_atoms_t const *atoms, clingo_id_t term, clingo_theory_term_type_t *type)
Get the type of the given 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_element_tuple(clingo_theory_atoms_t const *atoms, clingo_id_t element, clingo_id_t const **tuple, size_t *size)
Get the tuple (array of theory terms) of the given theory element.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_to_string_size(clingo_theory_atoms_t const *atoms, clingo_id_t atom, size_t *size)
Get the size of the string representation of the given theory atom (including the terminating 0).
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_atom_elements(clingo_theory_atoms_t const *atoms, clingo_id_t atom, clingo_id_t const **elements, size_t *size)
Get the theory elements associated with the theory atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_element_condition(clingo_theory_atoms_t const *atoms, clingo_id_t element, clingo_literal_t const **condition, size_t *size)
Get the condition (array of aspif literals) of the given theory element.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_atoms_term_number(clingo_theory_atoms_t const *atoms, clingo_id_t term, int *number)
Get the number of the given numeric theory term.
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.
int clingo_theory_term_type_t
Corresponding type to clingo_theory_term_type_e.
Definition clingo.h:747
@ clingo_theory_term_type_symbol
a symbol term, e.g., c
Definition clingo.h:744
@ clingo_theory_term_type_set
a set term, e.g., {1,2,3}
Definition clingo.h:741
@ clingo_theory_term_type_list
a list term, e.g., [1,2,3]
Definition clingo.h:740
@ clingo_theory_term_type_number
a number term, e.g., 42
Definition clingo.h:743
@ clingo_theory_term_type_function
a function term, e.g., f(1,2,3)
Definition clingo.h:742
@ clingo_theory_term_type_tuple
a tuple term, e.g., (1,2,3)
Definition clingo.h:739
This struct contains a set of functions to customize the clingo application.
Definition clingo.h:4222
bool(* register_options)(clingo_options_t *options, void *data)
callback to register options
Definition clingo.h:4229
clingo_logger_t logger
callback to override default logger
Definition clingo.h:4227
unsigned(* message_limit)(void *data)
callback to obtain message limit
Definition clingo.h:4225
bool(* validate_options)(void *data)
callback validate options
Definition clingo.h:4230
clingo_model_printer_t printer
callback to override default model printing
Definition clingo.h:4228
clingo_main_function_t main
callback to override clingo's main function
Definition clingo.h:4226
Struct to define an argument that consists of a name and a type.
Definition clingo.h:3614
Struct to map attributes to their string representation.
Definition clingo.h:3605
A lists of required attributes to construct an AST.
Definition clingo.h:3620
Struct to map AST types to lists of required attributes to construct ASTs.
Definition clingo.h:3627
An instance of this struct has to be registered with a solver to observe ground directives as they ar...
Definition clingo.h:2667
bool(* heuristic)(clingo_atom_t atom, clingo_heuristic_type_t type, int bias, unsigned priority, clingo_literal_t const *condition, size_t size, void *data)
Observe heuristic directives passed to the solver.
Definition clingo.h:2773
bool(* external)(clingo_atom_t atom, clingo_external_type_t type, void *data)
Observe external statements passed to the solver.
Definition clingo.h:2754
bool(* assume)(clingo_literal_t const *literals, size_t size, void *data)
Observe assumption directives passed to the solver.
Definition clingo.h:2762
bool(* output_term)(clingo_symbol_t symbol, clingo_literal_t const *condition, size_t size, void *data)
Observe shown terms passed to the solver.
Definition clingo.h:2747
bool(* theory_term_string)(clingo_id_t term_id, char const *name, void *data)
Observe string theory terms.
Definition clingo.h:2798
bool(* theory_term_compound)(clingo_id_t term_id, int name_id_or_type, clingo_id_t const *arguments, size_t size, void *data)
Observe compound theory terms.
Definition clingo.h:2813
bool(* project)(clingo_atom_t const *atoms, size_t size, void *data)
Observe projection directives passed to the solver.
Definition clingo.h:2730
bool(* init_program)(bool incremental, void *data)
Called once in the beginning.
Definition clingo.h:2675
bool(* begin_step)(void *data)
Marks the beginning of a block of directives passed to the solver.
Definition clingo.h:2682
bool(* theory_atom)(clingo_id_t atom_id_or_zero, clingo_id_t term_id, clingo_id_t const *elements, size_t size, void *data)
Observe theory atoms without guard.
Definition clingo.h:2834
bool(* theory_atom_with_guard)(clingo_id_t atom_id_or_zero, clingo_id_t term_id, clingo_id_t const *elements, size_t size, clingo_id_t operator_id, clingo_id_t right_hand_side_id, void *data)
Observe theory atoms with guard.
Definition clingo.h:2846
bool(* theory_element)(clingo_id_t element_id, clingo_id_t const *terms, size_t terms_size, clingo_literal_t const *condition, size_t condition_size, void *data)
Observe theory elements.
Definition clingo.h:2824
bool(* theory_term_number)(clingo_id_t term_id, int number, void *data)
Observe numeric theory terms.
Definition clingo.h:2791
bool(* minimize)(clingo_weight_t priority, clingo_weighted_literal_t const *literals, size_t size, void *data)
Observe minimize constraints (or weak constraints) passed to the solver.
Definition clingo.h:2723
bool(* rule)(bool choice, clingo_atom_t const *head, size_t head_size, clingo_literal_t const *body, size_t body_size, void *data)
Observe rules passed to the solver.
Definition clingo.h:2702
bool(* weight_rule)(bool choice, clingo_atom_t const *head, size_t head_size, clingo_weight_t lower_bound, clingo_weighted_literal_t const *body, size_t body_size, void *data)
Observe weight rules passed to the solver.
Definition clingo.h:2714
bool(* acyc_edge)(int node_u, int node_v, clingo_literal_t const *condition, size_t size, void *data)
Observe edge directives passed to the solver.
Definition clingo.h:2783
bool(* output_atom)(clingo_symbol_t symbol, clingo_atom_t atom, void *data)
Observe shown atoms passed to the solver.
Definition clingo.h:2739
bool(* end_step)(void *data)
Marks the end of a block of directives passed to the solver.
Definition clingo.h:2691
Represents a source code location marking its beginning and end.
Definition clingo.h:210
char const * end_file
the file where the location ends
Definition clingo.h:212
size_t end_column
the column where the location ends
Definition clingo.h:216
size_t begin_line
the line where the location begins
Definition clingo.h:213
size_t end_line
the line where the location ends
Definition clingo.h:214
char const * begin_file
the file where the location begins
Definition clingo.h:211
size_t begin_column
the column where the location begins
Definition clingo.h:215
Struct used to specify the program parts that have to be grounded.
Definition clingo.h:2908
char const * name
name of the program part
Definition clingo.h:2909
size_t size
number of parameters
Definition clingo.h:2911
clingo_symbol_t const * params
array of parameters
Definition clingo.h:2910
An instance of this struct has to be registered with a solver to implement a custom propagator.
Definition clingo.h:1482
bool(* check)(clingo_propagate_control_t *control, void *data)
This function is similar to clingo_propagate_control_propagate() but is called without a change set o...
Definition clingo.h:1562
bool(* init)(clingo_propagate_init_t *init, void *data)
This function is called once before each solving step.
Definition clingo.h:1494
void(* undo)(clingo_propagate_control_t const *control, clingo_literal_t const *changes, size_t size, void *data)
Called whenever a solver undoes assignments to watched solver literals.
Definition clingo.h:1549
bool(* propagate)(clingo_propagate_control_t *control, clingo_literal_t const *changes, size_t size, void *data)
Can be used to propagate solver literals given a partial assignment.
Definition clingo.h:1536
bool(* decide)(clingo_id_t thread_id, clingo_assignment_t const *assignment, clingo_literal_t fallback, void *data, clingo_literal_t *decision)
This function allows a propagator to implement domain-specific heuristics.
Definition clingo.h:1576
Custom scripting language to run functions during grounding.
Definition clingo.h:4280
bool(* call)(clingo_location_t const *location, char const *name, clingo_symbol_t const *arguments, size_t arguments_size, clingo_symbol_callback_t symbol_callback, void *symbol_callback_data, void *data)
Call the function with the given name and arguments.
Definition clingo.h:4296
void(* free)(void *data)
This function is called once when the script is deleted.
Definition clingo.h:4312
bool(* callable)(char const *name, bool *result, void *data)
Check if the given function is callable.
Definition clingo.h:4304
bool(* execute)(clingo_location_t const *location, char const *code, void *data)
Evaluate the given source code.
Definition clingo.h:4286
bool(* main)(clingo_control_t *control, void *data)
Run the main function.
Definition clingo.h:4309
A Literal with an associated weight.
Definition clingo.h:129