3#include <clingo/core.h>
4#include <clingo/shared.h>
20template <
typename>
inline constexpr bool always_false =
false;
22#ifndef __clang_analyzer__
23#define CLINGO_ENABLE_BITSET_ENUM(E, ...) \
24 [[nodiscard]] CLINGO_ENUM_OP(~, (E a), __VA_ARGS__)->E { \
25 return static_cast<E>(~static_cast<std::underlying_type_t<E>>(a)); \
27 [[nodiscard]] CLINGO_ENUM_OP(|, (E a, E b), __VA_ARGS__)->E { \
28 return static_cast<E>(static_cast<std::underlying_type_t<E>>(a) | static_cast<std::underlying_type_t<E>>(b)); \
30 CLINGO_ENUM_OP(|=, (E & a, E b), __VA_ARGS__)->E & { \
33 [[nodiscard]] CLINGO_ENUM_OP(&, (E a, E b), __VA_ARGS__)->E { \
34 return static_cast<E>(static_cast<std::underlying_type_t<E>>(a) & static_cast<std::underlying_type_t<E>>(b)); \
36 CLINGO_ENUM_OP(&=, (E & a, E b), __VA_ARGS__)->E & { \
39 [[nodiscard]] CLINGO_ENUM_OP(-, (E a, E b), __VA_ARGS__)->E { \
40 return static_cast<E>(static_cast<std::underlying_type_t<E>>(a) & static_cast<std::underlying_type_t<E>>(~b)); \
42 CLINGO_ENUM_OP(-=, (E & a, E b), __VA_ARGS__)->E & { \
45 [[nodiscard]] CLINGO_ENUM_OP(^, (E a, E b), __VA_ARGS__)->E { \
46 return static_cast<E>(static_cast<std::underlying_type_t<E>>(a) ^ static_cast<std::underlying_type_t<E>>(b)); \
48 CLINGO_ENUM_OP(^=, (E & a, E b), __VA_ARGS__)->E & { \
51 [[nodiscard]] [[maybe_unused]] inline __VA_ARGS__ constexpr auto intersects(E a, E b) -> bool { \
52 return static_cast<std::underlying_type_t<E>>(a & b) != 0; \
54 static_assert(std::is_enum_v<E>)
55#define CLINGO_ENUM_OP(op, arg, ...) [[maybe_unused]] inline __VA_ARGS__ constexpr auto operator op arg noexcept
57#define CLINGO_ENABLE_BITSET_ENUM(E, ...) \
58 [[nodiscard]] CLINGO_ENUM_OP(~, (E a), __VA_ARGS__)->E; \
59 [[nodiscard]] CLINGO_ENUM_OP(|, (E a, E b), __VA_ARGS__)->E; \
60 CLINGO_ENUM_OP(|=, (E & a, E b), __VA_ARGS__)->E &; \
61 [[nodiscard]] CLINGO_ENUM_OP(&, (E a, E b), __VA_ARGS__)->E; \
62 CLINGO_ENUM_OP(&=, (E & a, E b), __VA_ARGS__)->E &; \
63 [[nodiscard]] CLINGO_ENUM_OP(-, (E a, E b), __VA_ARGS__)->E; \
64 CLINGO_ENUM_OP(-=, (E & a, E b), __VA_ARGS__)->E &; \
65 [[nodiscard]] CLINGO_ENUM_OP(^, (E a, E b), __VA_ARGS__)->E; \
66 CLINGO_ENUM_OP(^=, (E & a, E b), __VA_ARGS__)->E &; \
67 [[nodiscard]] [[maybe_unused]] __VA_ARGS__ auto intersects(E a, E b) -> bool; \
68 static_assert(std::is_enum_v<E>)
69#define CLINGO_ENUM_OP(op, arg, ...) [[maybe_unused]] __VA_ARGS__ auto operator op arg noexcept
75 return Clingo::Detail::store_error(); \
80inline auto store_error() ->
bool {
83 }
catch (std::out_of_range
const &e) {
84 auto msg = std::string_view{e.what()};
86 }
catch (std::invalid_argument
const &e) {
87 auto msg = std::string_view{e.what()};
89 }
catch (std::bad_alloc
const &e) {
90 auto msg = std::string_view{e.what()};
92 }
catch (std::logic_error
const &e) {
93 auto msg = std::string_view{e.what()};
95 }
catch (std::exception
const &e) {
96 auto msg = std::string_view{e.what()};
99 auto msg = std::string_view{
"no message"};
105inline void raise_error() {
111 throw std::bad_alloc{};
114 throw std::logic_error{std::string{str.
data, str.
size}};
117 throw std::invalid_argument{std::string{str.
data, str.
size}};
120 throw std::out_of_range{std::string{str.
data, str.
size}};
123 throw std::runtime_error{std::string{str.
data, str.
size}};
131inline void handle_error(
bool res) {
138inline void handle_error_no_code(
bool res) {
150template <
typename>
struct funptr_traits;
152template <
typename R,
typename... As>
struct funptr_traits<R (*)(As...)> {
153 using return_type = R;
154 using args_tuple = std::tuple<As...>;
155 template <std::
size_t N>
using arg = std::tuple_element_t<N, args_tuple>;
157 static constexpr std::size_t arity =
sizeof...(As);
158 using last = arg<arity - 1>;
161template <
auto F,
class... As>
auto call(As &&...args) {
162 using Traits = funptr_traits<
decltype(F)>;
163 auto res = std::remove_pointer_t<typename Traits::last>{};
164 if constexpr (std::is_same_v<typename Traits::return_type, void>) {
165 F(std::forward<As>(args)..., &res);
167 handle_error(F(std::forward<As>(args)..., &res));
172template <auto F>
struct Free {
173 template <
typename Ptr>
void operator()(Ptr p)
const noexcept { F(p); }
176template <
class T>
struct value_handle {
178 using pointer =
typename T::pointer;
180 value_handle() =
default;
182 value_handle(
const value_handle &other) : ptr_{other ? T::copy(other.ptr_) : nullptr} {}
184 value_handle(value_handle &&other) noexcept : ptr_{std::exchange(other.ptr_,
nullptr)} {}
186 explicit value_handle(pointer ptr,
bool copy) : ptr_{copy && ptr != nullptr ? T::copy(ptr) : ptr} {}
194 auto operator=(
const value_handle &other) -> value_handle & {
195 if (
this != &other) {
199 ptr_ = other ? T::copy(other.ptr_) : nullptr;
204 auto operator=(value_handle &&other)
noexcept -> value_handle & {
205 if (
this != &other) {
209 ptr_ = std::exchange(other.ptr_,
nullptr);
214 [[nodiscard]]
auto get() const -> pointer {
return ptr_; }
215 explicit operator bool()
const {
return ptr_ !=
nullptr; }
218 pointer ptr_ =
nullptr;
221template <auto Copy, auto Free>
struct value_handle_traits {
222 using pointer = std::remove_pointer_t<
typename funptr_traits<
decltype(Copy)>::template arg<1>>;
223 using const_pointer =
typename funptr_traits<
decltype(Copy)>::template arg<0>;
224 static auto copy(pointer p) -> pointer {
225 auto res = pointer{};
226 handle_error(Copy(p, &res));
229 static void free(const_pointer p)
noexcept { Free(p); }
232template <
class T, auto F>
using unique_handle = std::unique_ptr<T, Free<F>>;
235template <std::input_iterator It, std::sentinel_for<It> S,
class Pred>
auto transform(It begin, S end, Pred pred) {
236 auto p = std::vector<std::invoke_result_t<Pred, std::iter_reference_t<It>>>{};
237 p.reserve(std::distance(begin, end));
238 std::transform(begin, end, std::back_inserter(p), pred);
243template <std::ranges::input_range Rng,
class Pred>
auto transform(Rng &&rng, Pred pred) {
244 return transform(std::ranges::begin(rng), std::ranges::end(rng), pred);
250template <
class T>
auto hash_value(T
const &x) {
251 return std::hash<T>{}(x);
257 auto p = std::make_pair(a, b);
258 return std::hash<std::string_view>{}(std::string_view(
reinterpret_cast<char const *
>(&p),
sizeof(
decltype(p))));
262template <
class T,
class P>
class intrusive_handle {
264 intrusive_handle() =
default;
265 explicit intrusive_handle(P *ptr,
bool inc =
true) : ptr_{ptr} {
270 intrusive_handle(intrusive_handle
const &other) : intrusive_handle{other.ptr_} {}
271 intrusive_handle(intrusive_handle &&other) noexcept : ptr_{std::exchange(other.ptr_,
nullptr)} {}
272 ~intrusive_handle() noexcept { T::release(ptr_); }
273 auto operator=(intrusive_handle
const &other) -> intrusive_handle & {
274 T::acquire(other.ptr_);
279 auto operator=(intrusive_handle &&other)
noexcept -> intrusive_handle & {
281 ptr_ = std::exchange(other.ptr_,
nullptr);
284 [[nodiscard]]
auto get() const noexcept -> P * {
return ptr_; }
285 void reset(std::nullptr_t =
nullptr) noexcept {
289 void reset(P *ptr,
bool inc =
true) {
296 friend auto operator==(intrusive_handle
const &p, std::nullptr_t)
noexcept ->
bool {
return p.ptr_ ==
nullptr; }
297 friend auto operator!=(intrusive_handle
const &p, std::nullptr_t)
noexcept ->
bool {
return p.ptr_ !=
nullptr; }
298 friend auto operator==(std::nullptr_t, intrusive_handle
const &p)
noexcept ->
bool {
return p.ptr_ ==
nullptr; }
299 friend auto operator!=(std::nullptr_t, intrusive_handle
const &p)
noexcept ->
bool {
return p.ptr_ !=
nullptr; }
305template <
typename T>
class ArrowProxy {
307 constexpr ArrowProxy(T
value) : value_(std::move(
value)) {}
308 constexpr auto operator->() -> T * {
return &value_; }
314template <
class Seq>
class RandomAccessIterator {
316 using iterator_category = std::random_access_iterator_tag;
317 using value_type =
typename Seq::value_type;
318 using size_type =
typename Seq::size_type;
319 using difference_type =
typename Seq::difference_type;
320 using pointer =
typename Seq::pointer;
321 using reference =
typename Seq::reference;
324 constexpr RandomAccessIterator() : view_{throw std::logic_error(
"invalid iterator")}, index_{0} {}
325 constexpr RandomAccessIterator(Seq container,
size_t index) noexcept : view_{std::move(container)}, index_{index} {}
326 constexpr auto operator*() const -> reference {
return view_.at(index_); }
327 constexpr auto operator->() const -> pointer {
return view_.at(index_); }
328 constexpr auto operator++() -> RandomAccessIterator & {
332 constexpr auto operator++(
int) -> RandomAccessIterator {
337 constexpr auto operator--() -> RandomAccessIterator & {
341 constexpr auto operator--(
int) -> RandomAccessIterator {
346 constexpr auto operator-(
const RandomAccessIterator &other)
const -> difference_type {
347 return static_cast<difference_type
>(index_) -
static_cast<difference_type
>(other.index_);
349 constexpr auto operator+(difference_type n)
const -> RandomAccessIterator {
350 return RandomAccessIterator(view_, index_ + n);
352 friend constexpr auto operator+(difference_type n, RandomAccessIterator it) -> RandomAccessIterator {
353 return RandomAccessIterator(it.view_, it.index_ + n);
355 constexpr auto operator-(difference_type n)
const -> RandomAccessIterator {
356 return RandomAccessIterator(view_, index_ - n);
358 constexpr auto operator+=(difference_type n) -> RandomAccessIterator & {
362 constexpr auto operator-=(difference_type n) -> RandomAccessIterator & {
366 constexpr auto operator==(
const RandomAccessIterator &other)
const ->
bool {
return index_ == other.index_; }
367 constexpr auto operator<=>(
const RandomAccessIterator &other)
const {
return index_ <=> other.index_; }
368 constexpr auto operator[](difference_type n)
const -> reference {
return view_.at(index_ + n); }
425using StringList = std::initializer_list<std::string_view const>;
481 auto log = logger ? std::make_unique<Logger>(std::move(logger)) :
nullptr;
482 auto has_log =
static_cast<bool>(log);
485 log.release(), limit),
509 [](
void *data)
noexcept { std::unique_ptr<Logger>(
static_cast<Logger *
>(data)); },
515 Detail::intrusive_handle<Library, clingo_lib_t> rep_;
538 [[nodiscard]]
auto str() const -> std::string_view {
539 auto [data, size] = Detail::call<clingo_string_builder_string>(bld_.get());
547 using Traits = Detail::value_handle_traits<clingo_string_builder_copy, clingo_string_builder_free>;
548 Detail::value_handle<Traits> bld_;
599 [[nodiscard]]
auto file() const -> std::string_view {
600 auto [data, size] = Detail::call<clingo_position_file>(pos_.get());
620 return std::string{bld.str()};
649 using Traits = Detail::value_handle_traits<clingo_position_copy, clingo_position_free>;
650 Detail::value_handle<Traits> pos_;
689 return std::string{bld.str()};
714 using Traits = Detail::value_handle_traits<clingo_location_copy, clingo_location_free>;
715 Detail::value_handle<Traits> loc_;
730inline auto version() -> std::tuple<int, int, int> {
735 return {major, minor, revision};
The main library class for managing global information and logging.
Definition core.hh:471
Library(LibraryFlags flags=LibraryFlags::none, Logger logger=nullptr, LogLevel level=LogLevel::info, size_t limit=default_message_limit)
Constructs a library object.
Definition core.hh:479
friend auto c_cast(Library const &lib) -> clingo_lib_t *
Casts the library object to its C representation.
Definition core.hh:500
Library(clingo_lib_t *rep, bool acquire)
Constructs a library object from an existing C representation.
Definition core.hh:494
Class representing a range in a file.
Definition core.hh:656
auto begin() const -> Position
Get the position marking the beginning of the location.
Definition core.hh:676
friend auto operator==(Location const &a, Location const &b) noexcept -> bool
Compare two locations for equality.
Definition core.hh:700
friend auto operator<=>(Location const &a, Location const &b) noexcept -> std::strong_ordering
Compare two locations.
Definition core.hh:709
friend auto c_cast(Location const &x) -> clingo_location_t const *
Cast the location to its C representation.
Definition core.hh:671
auto end() const -> Position
Get the position marking the end of the location.
Definition core.hh:681
Location(clingo_location_t const *loc)
Constructs a location from an existing C representation.
Definition core.hh:659
auto to_string() const -> std::string
Convert the location to a string representation.
Definition core.hh:686
auto hash() const noexcept -> size_t
Get a hash value for the location.
Definition core.hh:693
Location(Position const &begin, Position const &end)
Constructs a location from a begin and end position.
Definition core.hh:665
Class representing a position in a file.
Definition core.hh:572
Position(Library const &lib, std::string_view file, size_t line, size_t column)
Constructs a position from a file, line, and column.
Definition core.hh:587
friend auto operator==(Position const &a, Position const &b) noexcept -> bool
Compare two positions for equality.
Definition core.hh:635
friend auto c_cast(Position const &x) -> clingo_position_t const *
Cast a position to its C representation.
Definition core.hh:594
friend auto operator<=>(Position const &a, Position const &b) noexcept -> std::strong_ordering
Compare two positions.
Definition core.hh:644
Position(clingo_position_t const *pos)
Constructs a position from an existing C representation.
Definition core.hh:579
auto to_string() const -> std::string
Convert the position to a string representation.
Definition core.hh:617
auto file() const -> std::string_view
Get the file name of the position.
Definition core.hh:599
auto line() const -> size_t
Get the line number of the position.
Definition core.hh:607
auto hash() const noexcept -> size_t
Compute the hash of the position.
Definition core.hh:628
auto column() const -> size_t
Get the column number of the position.
Definition core.hh:612
A string builder for constructing strings.
Definition core.hh:524
StringBuilder()
Construct an empty string builder.
Definition core.hh:527
auto str() const -> std::string_view
Get a view of the string built by the string builder.
Definition core.hh:538
friend auto c_cast(StringBuilder &bld) -> clingo_string_builder_t *
Cast the string builder to its C representation.
Definition core.hh:533
void clear() noexcept
Clear the string builder, removing all content.
Definition core.hh:544
CLINGO_VISIBILITY_DEFAULT clingo_position_t const * clingo_location_end(clingo_location_t const *loc)
Get the end of the location.
CLINGO_VISIBILITY_DEFAULT void clingo_lib_release(clingo_lib_t *lib)
Release a library object created with clingo_lib_new().
CLINGO_VISIBILITY_DEFAULT int clingo_position_compare(clingo_position_t const *a, clingo_position_t const *b)
Compare two positions.
CLINGO_VISIBILITY_DEFAULT bool clingo_position_new(clingo_lib_t *lib, char const *file, size_t size, size_t line, size_t column, clingo_position_t const **pos)
Create a new source position object.
CLINGO_VISIBILITY_DEFAULT void clingo_version(int *major, int *minor, int *revision)
Obtain the clingo version.
CLINGO_VISIBILITY_DEFAULT bool clingo_set_error(clingo_result_t code, char const *message, size_t size)
Set an error in the current thread.
struct clingo_weighted_literal clingo_weighted_literal_t
A literal with an associated weight.
CLINGO_VISIBILITY_DEFAULT bool clingo_location_new(clingo_position_t const *begin, clingo_position_t const *end, clingo_location_t const **loc)
Create a new source location object.
CLINGO_VISIBILITY_DEFAULT bool clingo_position_to_string(clingo_position_t const *pos, clingo_string_builder_t *str)
Convert the given position into a string.
CLINGO_VISIBILITY_DEFAULT size_t clingo_position_column(clingo_position_t const *pos)
Get the column number of the position.
CLINGO_VISIBILITY_DEFAULT void clingo_string_builder_clear(clingo_string_builder_t *bld)
Clear the string in the builder.
int clingo_log_level_t
Corresponding type to clingo_log_level_e.
Definition core.h:149
struct clingo_lib clingo_lib_t
A library object storing global information.
Definition core.h:171
struct clingo_location clingo_location_t
Represents a source code location marking its beginning and end.
Definition core.h:354
CLINGO_VISIBILITY_DEFAULT void clingo_get_error(clingo_result_t *code, clingo_string_t *message)
Get the error set in the current thread.
uint32_t clingo_atom_t
Unsigned integer type used for aspif atoms.
Definition core.h:75
CLINGO_VISIBILITY_DEFAULT int clingo_location_compare(clingo_location_t const *a, clingo_location_t const *b)
Compare two locations.
struct clingo_string_builder clingo_string_builder_t
A builder for strings.
Definition core.h:252
CLINGO_VISIBILITY_DEFAULT size_t clingo_position_line(clingo_position_t const *pos)
Get the line number of the position.
#define CLINGO_VERSION_MINOR
Minor version number.
Definition core.h:64
#define CLINGO_VERSION_MAJOR
Major version number.
Definition core.h:62
CLINGO_VISIBILITY_DEFAULT bool clingo_position_equal(clingo_position_t const *a, clingo_position_t const *b)
Check if two positions are equal.
CLINGO_VISIBILITY_DEFAULT bool clingo_location_to_string(clingo_location_t const *loc, clingo_string_builder_t *str)
Convert the given location into a string.
CLINGO_VISIBILITY_DEFAULT size_t clingo_position_hash(clingo_position_t const *pos)
Compute a hash of the position.
int32_t clingo_literal_t
Signed integer type used for aspif and solver literals.
Definition core.h:73
CLINGO_VISIBILITY_DEFAULT clingo_position_t const * clingo_location_begin(clingo_location_t const *loc)
Get the beginning of the location.
int clingo_message_t
Corresponding type to clingo_message_e.
Definition core.h:138
uint32_t clingo_id_t
Unsigned integer type used in various places.
Definition core.h:77
int clingo_result_t
Corresponding type to clingo_result_e.
Definition core.h:106
uint32_t clingo_lib_flags_t
Bitset of clingo_lib_flags_e.
Definition core.h:180
#define CLINGO_VERSION_REVISION
Revision number.
Definition core.h:66
struct clingo_position clingo_position_t
Represents a cursor position in source code.
Definition core.h:286
CLINGO_VISIBILITY_DEFAULT bool clingo_string_builder_new(clingo_string_builder_t **bld)
Create a new string builder.
CLINGO_VISIBILITY_DEFAULT bool clingo_location_equal(clingo_location_t const *a, clingo_location_t const *b)
Check if two locations are equal.
int32_t clingo_weight_t
Signed integer type for weights in sum aggregates and minimize constraints.
Definition core.h:79
CLINGO_VISIBILITY_DEFAULT size_t clingo_location_hash(clingo_location_t const *loc)
Compute a hash of the location.
CLINGO_VISIBILITY_DEFAULT void clingo_lib_acquire(clingo_lib_t *lib)
Increment the reference count of the given library.
@ clingo_message_file_included
same file included multiple times
Definition core.h:132
@ clingo_message_error
to report multiple errors; a corresponding runtime error is raised later
Definition core.h:135
@ clingo_message_info
an info message
Definition core.h:129
@ clingo_message_atom_undefined
undefined atom in program
Definition core.h:131
@ clingo_message_global_variable
global variable in tuple of aggregate element
Definition core.h:133
@ clingo_message_operation_undefined
undefined operation in program
Definition core.h:130
@ clingo_message_trace
a trace message
Definition core.h:127
@ clingo_message_debug
a debug message
Definition core.h:128
@ clingo_message_warn
a warning message
Definition core.h:134
@ clingo_log_level_warn
the warning level
Definition core.h:145
@ clingo_log_level_debug
the debug level
Definition core.h:143
@ clingo_log_level_info
the info level
Definition core.h:144
@ clingo_log_level_error
the error level (least verbose)
Definition core.h:146
@ clingo_log_level_trace
the trace level (most verbose)
Definition core.h:142
@ clingo_result_range
result out of range
Definition core.h:103
@ clingo_result_runtime
errors only detectable at runtime like invalid input
Definition core.h:99
@ clingo_result_success
successful API calls
Definition core.h:98
@ clingo_result_invalid
invalid arguments passed to function
Definition core.h:102
@ clingo_result_bad_alloc
memory could not be allocated
Definition core.h:101
@ clingo_result_logic
wrong usage of the clingo API
Definition core.h:100
@ clingo_lib_flags_shared
create symbols in a thread-safe manner
Definition core.h:176
@ clingo_lib_flags_slotted
use custom allocator for storing symbols
Definition core.h:175
@ clingo_lib_flags_fast_release
whether to enable fast release of libraries
Definition core.h:177
int clingo_external_type_t
Corresponding type to clingo_external_type_e.
Definition shared.h:32
int clingo_heuristic_type_t
Corresponding type to clingo_heuristic_type_e.
Definition shared.h:22
@ clingo_heuristic_type_false
set the level of an atom and choose a negative sign
Definition shared.h:19
@ clingo_heuristic_type_init
modify the initial VSIDS score of an atom
Definition shared.h:17
@ clingo_heuristic_type_true
set the level of an atom and choose a positive sign
Definition shared.h:18
@ clingo_heuristic_type_factor
modify VSIDS factor of an atom
Definition shared.h:16
@ clingo_heuristic_type_level
set the level of an atom
Definition shared.h:14
@ clingo_heuristic_type_sign
configure which sign to chose for an atom
Definition shared.h:15
@ clingo_external_type_free
allow an external to be assigned freely
Definition shared.h:26
@ clingo_external_type_true
assign an external to true
Definition shared.h:27
@ clingo_external_type_false
assign an external to false
Definition shared.h:28
@ clingo_external_type_release
no longer treat an atom as external
Definition shared.h:29
auto operator+(Sign a, Sign b) -> Sign
Combine two signs.
auto operator+=(Sign &a, Sign b) -> Sign &
Combine two signs.
auto operator-(Sign a) -> Sign
Negate the sign.
@ value
The configuration entry is a double value.
std::span< std::string_view const > StringSpan
A span of string views.
Definition core.hh:423
clingo_literal_t SolverLiteral
A solver literal.
Definition core.hh:399
std::initializer_list< std::string_view const > StringList
A list of string views.
Definition core.hh:425
constexpr size_t default_message_limit
The default message limit for the logger.
Definition core.hh:460
std::vector< SolverLiteral > SolverLiteralVector
A vector of solver literals.
Definition core.hh:405
LibraryFlags
Flags to create library objects.
Definition core.hh:450
std::function< void(MessageCode, std::string_view)> Logger
A callback function type for logging messages.
Definition core.hh:465
std::span< Sum const > SumSpan
A span of sums.
Definition core.hh:420
clingo_atom_t ProgramAtom
A program atom.
Definition core.hh:387
std::span< ProgramId const > ProgramIdSpan
A span of program ids.
Definition core.hh:384
std::initializer_list< SolverLiteral const > SolverLiteralList
A list of solver literals.
Definition core.hh:403
HeuristicType
Enumeration of heuristic types.
Definition core.hh:560
std::span< ProgramAtom const > ProgramAtomSpan
A span of program atoms.
Definition core.hh:389
auto version() -> std::tuple< int, int, int >
Get the version of the Clingo library as a tuple.
Definition core.hh:730
int64_t Sum
A sum representing the sum of weights.
Definition core.hh:418
MessageCode
Enumeration of message codes.
Definition core.hh:428
std::vector< ProgramLiteral > ProgramLiteralVector
A vector of program literals.
Definition core.hh:396
clingo_weight_t Weight
A weight used in sum aggregates and minimize constraints.
Definition core.hh:408
clingo_literal_t ProgramLiteral
A program literal.
Definition core.hh:392
std::span< SolverLiteral const > SolverLiteralSpan
A span of solver literals.
Definition core.hh:401
std::span< WeightedLiteral const > WeightedLiteralSpan
A span of weighted literals.
Definition core.hh:415
clingo_id_t ProgramId
A program id used for various kinds of indices.
Definition core.hh:382
std::span< ProgramLiteral const > ProgramLiteralSpan
A span of program literals.
Definition core.hh:394
ExternalType
Enumeration of control modes.
Definition core.hh:552
std::span< clingo_weight_t const > WeightSpan
A span of weights.
Definition core.hh:410
LogLevel
Enumeration of log levels.
Definition core.hh:441
@ fast_release
whether to enable fast release of libraries
@ shared
create symbols in a thread-safe manner
@ slotted
use custom allocator for storing symbols
@ sign
Configure which sign to chose for an atom.
@ factor
Modify VSIDS factor of an atom.
@ level
Set the level of an atom.
@ init
Modify the initial VSIDS score of an atom.
@ global_variable
global variable in tuple of aggregate element
@ file_included
same file included multiple times
@ atom_undefined
undefined atom in program
@ operation_undefined
undefined operation in program
@ error
to report multiple errors; a corresponding runtime error is raised later
@ release
No longer treat an atom as external.
@ true_
Assign an external to true.
@ free
Allow an external to be assigned freely.
@ false_
Assign an external to false.
@ none
The empty set of flags.
Definition propagate.hh:38
#define CLINGO_ENABLE_BITSET_ENUM(E,...)
Opt-in macro for enabling bit operations for a given enum type.
Definition enum.hh:18
auto hash_combine(T... a) -> size_t
Combine the given hashes.
Definition hash.hh:239
constexpr auto transform(std::optional< T > &x, F &&f) -> Detail::transform_result< T &, F >
Implemenatation of std::optional<T>::transform.
Definition optional.hh:28
The clingo logger.
Definition core.h:152
Struct to capture strings that are not null-terminated.
Definition core.h:86
size_t size
the length of the string
Definition core.h:88
char const * data
pointer to the beginning of the string
Definition core.h:87
A literal with an associated weight.
Definition core.h:81