Clingo
Loading...
Searching...
No Matches
base.hh
1#pragma once
2
3#include <clingo/symbol.hh>
4
5#include <clingo/base.h>
6
7#include <cassert>
8#include <tuple>
9
10namespace Clingo {
11
15
17class Atom {
18 public:
25 explicit Atom(clingo_atom_base_t const *base, size_t index) : base_{base}, index_{index} {}
26
30 [[nodiscard]] auto literal() const -> ProgramLiteral {
31 return Detail::call<clingo_atom_base_literal>(base_, index_);
32 }
33
37 [[nodiscard]] auto symbol() const -> Symbol {
38 return Symbol{Detail::call<clingo_atom_base_symbol>(base_, index_), true};
39 }
40
47 [[nodiscard]] auto hash() const noexcept -> size_t { return Detail::hash_value(index_); }
48
54 friend auto operator==(Atom const &a, Atom const &b) noexcept -> bool {
55 assert(a.base_ == b.base_);
56 return a.index_ == b.index_;
57 }
58
64 friend auto operator<=>(Atom const &a, Atom const &b) noexcept -> std::strong_ordering {
65 assert(a.base_ == b.base_);
66 return a.index_ <=> b.index_;
67 }
68
69 private:
70 clingo_atom_base_t const *base_;
71 size_t index_;
72};
73
75class AtomBase {
76 public:
82 using value_type = std::pair<key_type, mapped_type>;
84 using size_type = std::size_t;
86 using difference_type = std::ptrdiff_t;
90 using pointer = Detail::ArrowProxy<value_type>;
92 using iterator = Detail::RandomAccessIterator<AtomBase>;
93
99 explicit AtomBase(clingo_atom_base_t const *base) : base_{base} {}
100
104 [[nodiscard]] auto size() const -> size_type { return Detail::call<clingo_atom_base_size>(base_); }
105
110 [[nodiscard]] auto at(size_t index) const -> value_type {
111 if (auto atom = Atom{base_, index}; index < size()) {
112 return value_type{atom.symbol(), atom};
113 }
114 throw std::out_of_range{"index out of range"};
115 }
116
121 [[nodiscard]] auto contains(key_type const &symbol) const -> bool {
122 return Detail::call<clingo_atom_base_find>(base_, *c_cast(&symbol)) < size();
123 }
124
130 [[nodiscard]] auto get(key_type const &symbol, std::optional<mapped_type> def = std::nullopt) const
131 -> std::optional<mapped_type> {
132 auto index = Detail::call<clingo_atom_base_find>(base_, *c_cast(&symbol));
133 return index < size() ? std::make_optional<mapped_type>(base_, index) : def;
134 }
135
139 [[nodiscard]] auto begin() const -> iterator { return {*this, 0}; }
140
144 [[nodiscard]] auto end() const -> iterator { return {*this, size()}; }
145
146 private:
147 clingo_atom_base_t const *base_;
148};
149static_assert(std::random_access_iterator<AtomBase::iterator>);
150
152class Term {
153 public:
158 explicit Term(clingo_term_base_t const &base, size_t index) : base_{&base}, index_{index} {}
159
163 [[nodiscard]] auto symbol() const -> Symbol {
164 return Symbol{Detail::call<clingo_term_base_symbol>(base_, index_), true};
165 }
166
170 [[nodiscard]] auto condition() const -> std::vector<ProgramLiteralVector> {
171 size_t const *sizes = nullptr;
172 clingo_literal_t const *const *lits = nullptr;
173 size_t size = 0;
174 Detail::handle_error(clingo_term_base_condition(base_, index_, &sizes, &lits, &size));
175
176 auto res = std::vector<ProgramLiteralVector>{};
177 res.reserve(size);
178 for (size_t i = 0; i < size; ++i) {
179 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
180 res.emplace_back(lits[i], lits[i] + sizes[i]);
181 }
182 return res;
183 }
184
191 [[nodiscard]] auto hash() const noexcept -> size_t { return Detail::hash_value(index_); }
192
198 friend auto operator==(Term const &a, Term const &b) noexcept -> bool {
199 assert(a.base_ == b.base_);
200 return a.index_ == b.index_;
201 }
202
208 friend auto operator<=>(Term const &a, Term const &b) noexcept -> std::strong_ordering {
209 assert(a.base_ == b.base_);
210 return a.index_ <=> b.index_;
211 }
212
213 private:
214 clingo_term_base_t const *base_;
215 size_t index_;
216};
217
219class TermBase {
220 public:
226 using value_type = std::pair<key_type, mapped_type>;
228 using size_type = std::size_t;
230 using difference_type = std::ptrdiff_t;
234 using pointer = Detail::ArrowProxy<value_type>;
236 using iterator = Detail::RandomAccessIterator<TermBase>;
237
241 explicit TermBase(clingo_term_base_t const &base) : base_{&base} {}
242
246 [[nodiscard]] auto size() const -> size_type { return Detail::call<clingo_term_base_size>(base_); }
247
252 [[nodiscard]] auto at(size_t index) const -> value_type {
253 auto term = Term{*base_, index};
254 return index < size() ? value_type{term.symbol(), term} : throw std::out_of_range{"index out of range"};
255 }
256
261 [[nodiscard]] auto contains(key_type const &symbol) const -> bool {
262 return Detail::call<clingo_term_base_find>(base_, *c_cast(&symbol)) < size();
263 }
264
270 [[nodiscard]] auto get(key_type const &symbol, std::optional<mapped_type> def = std::nullopt) const
271 -> std::optional<mapped_type> {
272 auto index = Detail::call<clingo_term_base_find>(base_, *c_cast(&symbol));
273 return index < size() ? std::make_optional<mapped_type>(*base_, index) : def;
274 }
275
279 [[nodiscard]] auto begin() const -> iterator { return {*this, 0}; }
280
284 [[nodiscard]] auto end() const -> iterator { return {*this, size()}; }
285
286 private:
287 clingo_term_base_t const *base_;
288};
289static_assert(std::random_access_iterator<TermBase::iterator>);
290
300
301class TheoryTerm;
303using TheoryTermVector = std::vector<TheoryTerm>;
304
307 public:
312 explicit TheoryTerm(clingo_theory_base_t const &base, size_t index) : base_{&base}, index_{index} {}
313
315 [[nodiscard]] auto type() const -> TheoryTermType {
316 return static_cast<TheoryTermType>(Detail::call<clingo_theory_base_term_type>(base_, index_));
317 }
318
322 [[nodiscard]] auto number() const -> int { return Detail::call<clingo_theory_base_term_number>(base_, index_); }
323
327 [[nodiscard]] auto name() const -> std::string_view {
328 auto [name, size] = Detail::call<clingo_theory_base_term_name>(base_, index_);
329 return {name, size};
330 }
331
335 [[nodiscard]] auto arguments() const -> std::vector<TheoryTerm> {
336 size_t size = 0;
337 clingo_id_t const *args = nullptr;
338 Detail::handle_error(clingo_theory_base_term_arguments(base_, index_, &args, &size));
339 return Detail::transform(std::span{args, size}, [this](clingo_id_t id) { return TheoryTerm{*base_, id}; });
340 }
341
345 [[nodiscard]] auto to_string() const -> std::string {
346 auto bld = StringBuilder{};
347 Detail::handle_error(clingo_theory_base_term_to_string(base_, index_, c_cast(bld)));
348 return std::string{bld.str()};
349 }
350
357 [[nodiscard]] auto hash() const noexcept -> size_t { return Detail::hash_value(index_); }
358
364 friend auto operator==(TheoryTerm const &a, TheoryTerm const &b) noexcept -> bool {
365 assert(a.base_ == b.base_);
366 return a.index_ == b.index_;
367 }
368
374 friend auto operator<=>(TheoryTerm const &a, TheoryTerm const &b) noexcept -> std::strong_ordering {
375 assert(a.base_ == b.base_);
376 return a.index_ <=> b.index_;
377 }
378
379 private:
380 clingo_theory_base_t const *base_;
381 size_t index_;
382};
383
384class TheoryElement;
386using TheoryElementVector = std::vector<TheoryElement>;
387
390 public:
395 explicit TheoryElement(clingo_theory_base_t const &base, size_t index) : base_{&base}, index_{index} {}
396
400 [[nodiscard]] auto tuple() const -> TheoryTermVector {
401 size_t size = 0;
402 clingo_id_t const *tuple = nullptr;
403 Detail::handle_error(clingo_theory_base_element_tuple(base_, index_, &tuple, &size));
404 return Detail::transform(std::span{tuple, size}, [this](clingo_id_t id) { return TheoryTerm{*base_, id}; });
405 }
406
410 [[nodiscard]] auto condition() const -> ProgramLiteralSpan {
411 size_t size = 0;
412 clingo_literal_t const *cond = nullptr;
413 Detail::handle_error(clingo_theory_base_element_condition(base_, index_, &cond, &size));
414 return std::span{cond, size};
415 }
416
423 [[nodiscard]] auto condition_id() const -> ProgramLiteral {
424 return Detail::call<clingo_theory_base_element_condition_id>(base_, index_);
425 }
426
430 [[nodiscard]] auto to_string() const -> std::string {
431 auto bld = StringBuilder();
432 Detail::handle_error(clingo_theory_base_element_to_string(base_, index_, c_cast(bld)));
433 return std::string{bld.str()};
434 }
435
442 [[nodiscard]] auto hash() const noexcept -> size_t { return Detail::hash_value(index_); }
443
449 friend auto operator==(TheoryElement const &a, TheoryElement const &b) noexcept -> bool {
450 assert(a.base_ == b.base_);
451 return a.index_ == b.index_;
452 }
453
459 friend auto operator<=>(TheoryElement const &a, TheoryElement const &b) noexcept -> std::strong_ordering {
460 assert(a.base_ == b.base_);
461 return a.index_ <=> b.index_;
462 }
463
464 private:
465 clingo_theory_base_t const *base_;
466 size_t index_;
467};
468
471 public:
476 explicit TheoryAtom(clingo_theory_base_t const &base, size_t index) : base_{&base}, index_{index} {}
477
481 [[nodiscard]] auto name() const -> TheoryTerm {
482 return TheoryTerm{*base_, Detail::call<clingo_theory_base_atom_term>(base_, index_)};
483 }
484
488 [[nodiscard]] auto elements() const -> TheoryElementVector {
489 size_t size = 0;
490 clingo_id_t const *elems = nullptr;
491 Detail::handle_error(clingo_theory_base_atom_elements(base_, index_, &elems, &size));
492 return Detail::transform(std::span{elems, size}, [this](clingo_id_t id) { return TheoryElement{*base_, id}; });
493 }
494
498 [[nodiscard]] auto literal() const -> ProgramLiteral {
499 return Detail::call<clingo_theory_base_atom_literal>(base_, index_);
500 }
501
505 [[nodiscard]] auto guard() const -> std::optional<std::pair<std::string_view, TheoryTerm>> {
506 auto has_guard = Detail::call<clingo_theory_base_atom_has_guard>(base_, index_);
507 if (has_guard) {
509 clingo_id_t term = 0;
510 Detail::handle_error(clingo_theory_base_atom_guard(base_, index_, &op, &term));
511 return std::pair{std::string_view{op.data, op.size}, TheoryTerm{*base_, term}};
512 }
513 return std::nullopt;
514 }
515
519 [[nodiscard]] auto to_string() const -> std::string {
520 auto bld = StringBuilder{};
521 Detail::handle_error(clingo_theory_base_atom_to_string(base_, index_, c_cast(bld)));
522 return std::string{bld.str()};
523 }
524
531 [[nodiscard]] auto hash() const noexcept -> size_t { return Detail::hash_value(index_); }
532
538 friend auto operator==(TheoryAtom const &a, TheoryAtom const &b) noexcept -> bool {
539 assert(a.base_ == b.base_);
540 return a.index_ == b.index_;
541 }
542
548 friend auto operator<=>(TheoryAtom const &a, TheoryAtom const &b) noexcept -> std::strong_ordering {
549 assert(a.base_ == b.base_);
550 return a.index_ <=> b.index_;
551 }
552
553 private:
554 clingo_theory_base_t const *base_;
555 size_t index_;
556};
557
560 public:
564 using size_type = std::size_t;
566 using difference_type = std::ptrdiff_t;
570 using pointer = Detail::ArrowProxy<value_type>;
572 using iterator = Detail::RandomAccessIterator<TheoryBase>;
573
577 explicit TheoryBase(clingo_theory_base_t const &base) : base_{&base} {}
578
582 [[nodiscard]] auto size() const -> size_type { return Detail::call<clingo_theory_base_size>(base_); }
583
587 [[nodiscard]] auto at(size_t index) const -> value_type {
588 return index < size() ? TheoryAtom{*base_, index} : throw std::out_of_range{"atom index out of range"};
589 }
590
594 [[nodiscard]] auto begin() const -> iterator { return {*this, 0}; }
595
599 [[nodiscard]] auto end() const -> iterator { return {*this, size()}; }
600
601 private:
602 clingo_theory_base_t const *base_;
603};
604static_assert(std::random_access_iterator<TheoryBase::iterator>);
605
607class Base {
608 public:
610 using key_type = std::tuple<std::string_view, size_t, bool>;
614 using value_type = std::pair<key_type, mapped_type>;
616 using size_type = std::size_t;
618 using difference_type = std::ptrdiff_t;
622 using pointer = Detail::ArrowProxy<value_type>;
624 using iterator = Detail::RandomAccessIterator<Base>;
625
629 explicit Base(clingo_base_t const *base) : base_{base} {}
630
635 [[nodiscard]] auto is_external(ProgramLiteral lit) const -> bool {
636 return Detail::call<clingo_base_is_external>(base_, lit);
637 }
638
643 [[nodiscard]] auto is_fact(ProgramLiteral lit) const -> bool {
644 return Detail::call<clingo_base_is_fact>(base_, lit);
645 }
646
651 [[nodiscard]] auto is_shown(ProgramLiteral lit) const -> bool {
652 return Detail::call<clingo_base_is_shown>(base_, lit);
653 }
654
659 [[nodiscard]] auto is_projected(ProgramLiteral lit) const -> bool {
660 return Detail::call<clingo_base_is_fact>(base_, lit);
661 }
662
667 [[nodiscard]] auto is_current(ProgramLiteral lit) const -> bool {
668 return Detail::call<clingo_base_is_current>(base_, lit);
669 }
670
674 [[nodiscard]] auto size() const -> size_type { return Detail::call<clingo_base_atoms_size>(base_); }
675
680 [[nodiscard]] auto at(size_t index) const -> value_type {
681 if (index < size()) {
682 auto sig = clingo_signature_t{};
683 clingo_atom_base_t const *atoms = nullptr;
684 Detail::handle_error(clingo_base_atoms_at(base_, index, &sig, &atoms));
685 return std::pair{std::tuple{sig.name, sig.arity, sig.is_positive}, AtomBase{atoms}};
686 }
687 throw std::out_of_range{"index out of range"};
688 }
689
694 [[nodiscard]] auto contains(key_type const &sig) const -> bool {
695 auto csig =
696 clingo_signature_t{std::get<0>(sig).data(), std::get<0>(sig).size(), std::get<1>(sig), std::get<2>(sig)};
697 return Detail::call<clingo_base_atoms_find>(base_, &csig, nullptr);
698 }
699
707 [[nodiscard]] auto contains(std::pair<std::string_view, size_t> const &sig) const -> bool {
708 return contains({std::get<0>(sig), std::get<1>(sig), true});
709 }
710
715 [[nodiscard]] auto contains(Symbol const &sym) const -> bool {
716 if (auto sig = sym.signature(); sig) {
717 if (auto base = get(*sig)) {
718 return base->contains(sym);
719 }
720 }
721 return false;
722 }
723
729 [[nodiscard]] auto get(key_type const &sig, std::optional<mapped_type> def = std::nullopt) const
730 -> std::optional<mapped_type> {
731 auto csig =
732 clingo_signature_t{std::get<0>(sig).data(), std::get<0>(sig).size(), std::get<1>(sig), std::get<2>(sig)};
733 clingo_atom_base_t const *atoms = nullptr;
734 auto found = false;
735 Detail::handle_error(clingo_base_atoms_find(base_, &csig, &atoms, &found));
736 return found ? std::make_optional<AtomBase>(atoms) : def;
737 }
738
744 [[nodiscard]] auto get(std::pair<std::string_view, size_t> const &sig,
745 std::optional<mapped_type> def = std::nullopt) const -> std::optional<mapped_type> {
746 return get({std::get<0>(sig), std::get<1>(sig), true}, def);
747 }
748
754 [[nodiscard]] auto get(Symbol const &sym, std::optional<Atom> def = std::nullopt) const -> std::optional<Atom> {
755 if (auto sig = sym.signature(); sig) {
756 if (auto base = get(*sig)) {
757 return base->get(sym, def);
758 }
759 }
760 return def;
761 }
762
766 [[nodiscard]] auto terms() const -> TermBase { return TermBase{*Detail::call<clingo_base_terms>(base_)}; }
767
771 [[nodiscard]] auto theory() const -> TheoryBase { return TheoryBase{*Detail::call<clingo_base_theory>(base_)}; }
772
776 [[nodiscard]] auto begin() const -> iterator { return {*this, 0}; }
777
781 [[nodiscard]] auto end() const -> iterator { return {*this, size()}; }
782
783 private:
784 clingo_base_t const *base_;
785};
786static_assert(std::random_access_iterator<Base::iterator>);
787
789
790} // namespace Clingo
791
792namespace std {
793
795template <> struct hash<Clingo::Atom> {
797 auto operator()(Clingo::Atom const &x) const noexcept -> size_t { return x.hash(); }
798};
799
801template <> struct hash<Clingo::Term> {
803 auto operator()(Clingo::Term const &x) const noexcept -> size_t { return x.hash(); }
804};
805
807template <> struct hash<Clingo::TheoryTerm> {
809 auto operator()(Clingo::TheoryTerm const &x) const noexcept -> size_t { return x.hash(); }
810};
811
813template <> struct hash<Clingo::TheoryElement> {
815 auto operator()(Clingo::TheoryElement const &x) const noexcept -> size_t { return x.hash(); }
816};
817
819template <> struct hash<Clingo::TheoryAtom> {
821 auto operator()(Clingo::TheoryAtom const &x) const noexcept -> size_t { return x.hash(); }
822};
823
824} // namespace std
An atom base that maps symbols to atoms.
Definition base.hh:75
Detail::ArrowProxy< value_type > pointer
The pointer type.
Definition base.hh:90
std::size_t size_type
The size type.
Definition base.hh:84
auto size() const -> size_type
The size of the atom base.
Definition base.hh:104
value_type reference
The reference type.
Definition base.hh:88
AtomBase(clingo_atom_base_t const *base)
Construct an atom base from its C representation.
Definition base.hh:99
auto at(size_t index) const -> value_type
Get the symbol atom pair at the given index.
Definition base.hh:110
std::pair< key_type, mapped_type > value_type
The value type.
Definition base.hh:82
auto get(key_type const &symbol, std::optional< mapped_type > def=std::nullopt) const -> std::optional< mapped_type >
Get the atom for the given symbol.
Definition base.hh:130
auto contains(key_type const &symbol) const -> bool
Whether the atom base contains the given symbol.
Definition base.hh:121
auto end() const -> iterator
Get an iterator pointing to the end of the atom base.
Definition base.hh:144
std::ptrdiff_t difference_type
The difference type.
Definition base.hh:86
auto begin() const -> iterator
Get an iterator pointing to the first element of the atom base.
Definition base.hh:139
Detail::RandomAccessIterator< AtomBase > iterator
The iterator type.
Definition base.hh:92
Class to provide access to symbolic atoms.
Definition base.hh:17
friend auto operator==(Atom const &a, Atom const &b) noexcept -> bool
Compare two atoms for equality.
Definition base.hh:54
auto hash() const noexcept -> size_t
Get the header of the atom.
Definition base.hh:47
auto symbol() const -> Symbol
Get the atom's symbol.
Definition base.hh:37
auto literal() const -> ProgramLiteral
Get the program literal of the atom.
Definition base.hh:30
Atom(clingo_atom_base_t const *base, size_t index)
Construct an atom from its C representation.
Definition base.hh:25
friend auto operator<=>(Atom const &a, Atom const &b) noexcept -> std::strong_ordering
Compare two atoms.
Definition base.hh:64
A base that maps signatures to atom bases, and captures term and theory bases.
Definition base.hh:607
auto at(size_t index) const -> value_type
Get the signature atom base pair at the given index.
Definition base.hh:680
auto is_fact(ProgramLiteral lit) const -> bool
Check whether the given program literal is a fact.
Definition base.hh:643
auto size() const -> size_type
Get the number of atom bases in the base.
Definition base.hh:674
auto terms() const -> TermBase
Get the term base of the program.
Definition base.hh:766
std::tuple< std::string_view, size_t, bool > key_type
The key type.
Definition base.hh:610
Detail::ArrowProxy< value_type > pointer
The pointer type.
Definition base.hh:622
auto is_external(ProgramLiteral lit) const -> bool
Check whether the given program literal is external.
Definition base.hh:635
std::pair< key_type, mapped_type > value_type
The value type.
Definition base.hh:614
value_type reference
The reference type.
Definition base.hh:620
auto theory() const -> TheoryBase
Get the theory base of the program.
Definition base.hh:771
std::size_t size_type
The size type.
Definition base.hh:616
auto contains(Symbol const &sym) const -> bool
Check whether the base contains the given symbol.
Definition base.hh:715
auto is_projected(ProgramLiteral lit) const -> bool
Check whether the (atom of the) given program literal is projected.
Definition base.hh:659
Base(clingo_base_t const *base)
Construct a base from its C representation.
Definition base.hh:629
auto get(Symbol const &sym, std::optional< Atom > def=std::nullopt) const -> std::optional< Atom >
Get the atom base for the given symbol.
Definition base.hh:754
auto is_current(ProgramLiteral lit) const -> bool
Check whether the program literals belongs to the current solving step.
Definition base.hh:667
auto is_shown(ProgramLiteral lit) const -> bool
Check whether the given program literal is shown.
Definition base.hh:651
std::ptrdiff_t difference_type
The difference type.
Definition base.hh:618
auto end() const -> iterator
Get an iterator pointing to the end of the base.
Definition base.hh:781
Detail::RandomAccessIterator< Base > iterator
The iterator type.
Definition base.hh:624
auto begin() const -> iterator
Get an iterator pointing to the first element of the base.
Definition base.hh:776
auto contains(key_type const &sig) const -> bool
Check whether the base contains the given signature.
Definition base.hh:694
auto get(key_type const &sig, std::optional< mapped_type > def=std::nullopt) const -> std::optional< mapped_type >
Get the atom base for the given signature.
Definition base.hh:729
auto contains(std::pair< std::string_view, size_t > const &sig) const -> bool
Check whether the base contains the given short signature.
Definition base.hh:707
auto get(std::pair< std::string_view, size_t > const &sig, std::optional< mapped_type > def=std::nullopt) const -> std::optional< mapped_type >
Get the atom base for the given short signature.
Definition base.hh:744
A string builder for constructing strings.
Definition core.hh:524
Class modeling a symbol in Clingo.
Definition symbol.hh:68
A term base that maps symbols to terms.
Definition base.hh:219
auto size() const -> size_type
The size of the term base.
Definition base.hh:246
auto begin() const -> iterator
Get an iterator pointing to the first element of the term base.
Definition base.hh:279
auto at(size_t index) const -> value_type
Get the symbol term pair at the given index.
Definition base.hh:252
auto end() const -> iterator
Get an iterator pointing to the end of the term base.
Definition base.hh:284
Detail::ArrowProxy< value_type > pointer
The pointer type.
Definition base.hh:234
std::ptrdiff_t difference_type
The difference type.
Definition base.hh:230
auto contains(key_type const &symbol) const -> bool
Whether the term base contains the given symbol.
Definition base.hh:261
std::pair< key_type, mapped_type > value_type
The value type.
Definition base.hh:226
Detail::RandomAccessIterator< TermBase > iterator
The iterator type.
Definition base.hh:236
auto get(key_type const &symbol, std::optional< mapped_type > def=std::nullopt) const -> std::optional< mapped_type >
Get the term for the given symbol.
Definition base.hh:270
value_type reference
The reference type.
Definition base.hh:232
TermBase(clingo_term_base_t const &base)
Construct a term base from its C representation.
Definition base.hh:241
std::size_t size_type
The size type.
Definition base.hh:228
Class to provide access to terms in a program.
Definition base.hh:152
friend auto operator==(Term const &a, Term const &b) noexcept -> bool
Compare two terms for equality.
Definition base.hh:198
auto condition() const -> std::vector< ProgramLiteralVector >
Get the condition of the term.
Definition base.hh:170
friend auto operator<=>(Term const &a, Term const &b) noexcept -> std::strong_ordering
Compare two terms.
Definition base.hh:208
Term(clingo_term_base_t const &base, size_t index)
Construct a term from its C representation.
Definition base.hh:158
auto symbol() const -> Symbol
Get the symbol of the term.
Definition base.hh:163
auto hash() const noexcept -> size_t
Get the hash of the term.
Definition base.hh:191
Class to provide access to theory atoms.
Definition base.hh:470
friend auto operator<=>(TheoryAtom const &a, TheoryAtom const &b) noexcept -> std::strong_ordering
Compare two theory atoms.
Definition base.hh:548
TheoryAtom(clingo_theory_base_t const &base, size_t index)
Constructor from C representation.
Definition base.hh:476
auto hash() const noexcept -> size_t
Get the hash of the theory atom.
Definition base.hh:531
auto to_string() const -> std::string
Convert the theory atom to a string representation.
Definition base.hh:519
auto guard() const -> std::optional< std::pair< std::string_view, TheoryTerm > >
Get the guard of the theory atom.
Definition base.hh:505
friend auto operator==(TheoryAtom const &a, TheoryAtom const &b) noexcept -> bool
Compare two theory atoms for equality.
Definition base.hh:538
auto literal() const -> ProgramLiteral
Get the literal of the theory atom.
Definition base.hh:498
auto elements() const -> TheoryElementVector
Get the elements of the theory atom.
Definition base.hh:488
auto name() const -> TheoryTerm
Get the name of the theory atom.
Definition base.hh:481
A theory base that maps theory atoms.
Definition base.hh:559
std::size_t size_type
The size type.
Definition base.hh:564
auto begin() const -> iterator
Get an iterator pointing to the first element of the theory base.
Definition base.hh:594
TheoryAtom value_type
The value type.
Definition base.hh:562
TheoryBase(clingo_theory_base_t const &base)
Construct a theory base from its C representation.
Definition base.hh:577
auto at(size_t index) const -> value_type
Get the theory atom at the given index.
Definition base.hh:587
std::ptrdiff_t difference_type
The difference type.
Definition base.hh:566
Detail::RandomAccessIterator< TheoryBase > iterator
The iterator type.
Definition base.hh:572
auto size() const -> size_type
Get the size of the theory base.
Definition base.hh:582
Detail::ArrowProxy< value_type > pointer
The pointer type.
Definition base.hh:570
auto end() const -> iterator
Get an iterator pointing to the end of the theory base.
Definition base.hh:599
Class to provide access to theory elements.
Definition base.hh:389
auto tuple() const -> TheoryTermVector
Get the tuple of the theory element.
Definition base.hh:400
auto to_string() const -> std::string
Convert the theory element to a string representation.
Definition base.hh:430
auto hash() const noexcept -> size_t
Get the hash of the theory element.
Definition base.hh:442
friend auto operator<=>(TheoryElement const &a, TheoryElement const &b) noexcept -> std::strong_ordering
Compare two theory elements.
Definition base.hh:459
auto condition() const -> ProgramLiteralSpan
Get the condition of the theory element.
Definition base.hh:410
TheoryElement(clingo_theory_base_t const &base, size_t index)
Constructor from C representation.
Definition base.hh:395
auto condition_id() const -> ProgramLiteral
Get the condition id of the theory element.
Definition base.hh:423
friend auto operator==(TheoryElement const &a, TheoryElement const &b) noexcept -> bool
Compare two theory elements for equality.
Definition base.hh:449
Class to provide access to theory terms.
Definition base.hh:306
auto number() const -> int
Get the numeric value of the term if it is a number term.
Definition base.hh:322
auto arguments() const -> std::vector< TheoryTerm >
Get the arguments of the term if it is a function term.
Definition base.hh:335
friend auto operator<=>(TheoryTerm const &a, TheoryTerm const &b) noexcept -> std::strong_ordering
Compare two theory terms.
Definition base.hh:374
auto name() const -> std::string_view
Get the name of the term if it is a constant or function term.
Definition base.hh:327
auto hash() const noexcept -> size_t
Get the hash of the term.
Definition base.hh:357
auto type() const -> TheoryTermType
Get the type of the theory term.
Definition base.hh:315
TheoryTerm(clingo_theory_base_t const &base, size_t index)
Construct a theory term from its C representation.
Definition base.hh:312
friend auto operator==(TheoryTerm const &a, TheoryTerm const &b) noexcept -> bool
Compare two theory terms for equality.
Definition base.hh:364
auto to_string() const -> std::string
Convert the term to a string representation.
Definition base.hh:345
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_element_to_string(clingo_theory_base_t const *theory, clingo_id_t element, clingo_string_builder_t *builder)
Get the string representation of the given theory element.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_atom_elements(clingo_theory_base_t const *theory, clingo_id_t atom, clingo_id_t const **elements, size_t *size)
Get the theory elements associated with the theory atom.
struct clingo_theory_base clingo_theory_base_t
Object to inspect theory atoms.
Definition base.h:93
struct clingo_atom_base clingo_atom_base_t
Object to inspect the symbolic atoms in a program.
Definition base.h:75
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_atom_to_string(clingo_theory_base_t const *theory, clingo_id_t atom, clingo_string_builder_t *builder)
Get the string representation of the given theory atom.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_atom_guard(clingo_theory_base_t const *theory, clingo_id_t atom, clingo_string_t *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_base_atoms_find(clingo_base_t const *base, clingo_signature_t const *signature, clingo_atom_base_t const **atoms, bool *found)
Find the atom base wit the given signature.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_term_arguments(clingo_theory_base_t const *theory, 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_base_term_to_string(clingo_theory_base_t const *theory, clingo_id_t term, clingo_string_builder_t *builder)
Get the string representation of the given theory term.
struct clingo_term_base clingo_term_base_t
Object to inspect the shown terms in a program.
Definition base.h:78
CLINGO_VISIBILITY_DEFAULT bool clingo_base_atoms_at(clingo_base_t const *base, size_t index, clingo_signature_t *signature, clingo_atom_base_t const **atoms)
Get the signature and atom base at the given index.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_element_tuple(clingo_theory_base_t const *theory, clingo_id_t element, clingo_id_t const **tuple, size_t *size)
Get the tuple (array of theory terms) of the given theory element.
struct clingo_base clingo_base_t
Object to inspect symbolic atoms in a program—the relevant Herbrand base gringo uses to instantiate p...
Definition base.h:70
CLINGO_VISIBILITY_DEFAULT bool clingo_term_base_condition(clingo_term_base_t const *terms, size_t index, size_t const **sizes, clingo_literal_t const *const **literals, size_t *size)
Get the conditions of a show directive.
CLINGO_VISIBILITY_DEFAULT bool clingo_theory_base_element_condition(clingo_theory_base_t const *theory, 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_theory_term_type_symbol
a symbol term, e.g., c
Definition base.h:87
@ clingo_theory_term_type_set
a set term, e.g., {1,2,3}
Definition base.h:84
@ clingo_theory_term_type_list
a list term, e.g., [1,2,3]
Definition base.h:83
@ clingo_theory_term_type_number
a number term, e.g., 42
Definition base.h:86
@ clingo_theory_term_type_function
a function term, e.g., f(1,2,3)
Definition base.h:85
@ clingo_theory_term_type_tuple
a tuple term, e.g., (1,2,3)
Definition base.h:82
int32_t clingo_literal_t
Signed integer type used for aspif and solver literals.
Definition core.h:73
uint32_t clingo_id_t
Unsigned integer type used in various places.
Definition core.h:77
@ tuple
Theory tuples "(t1,...,tn)".
@ list
Theory lists "[t1,...,tn]".
@ set
Theory sets "{t1,...,tn}".
std::vector< TheoryTerm > TheoryTermVector
A vector of theory terms.
Definition base.hh:303
std::vector< TheoryElement > TheoryElementVector
A vector of theory elements.
Definition base.hh:386
TheoryTermType
Enumeration of theory term types.
Definition base.hh:292
@ symbol
a symbol term, e.g., c
@ number
a number term, e.g., 42
@ function
a function term, e.g., f(1,2,3)
std::vector< ProgramLiteral > ProgramLiteralVector
A vector of program literals.
Definition core.hh:396
clingo_literal_t ProgramLiteral
A program literal.
Definition core.hh:392
std::span< ProgramLiteral const > ProgramLiteralSpan
A span of program literals.
Definition core.hh:394
@ atoms
Select all atoms.
std::variant< TermVariable, TermSymbol, TermTuple, TermFunction, TermAbs, TermUnary, TermBinary > Term
Variant holding the different term types.
Definition term.hh:45
std::variant< TheoryTermSymbol, TheoryTermVariable, TheoryTermTuple, TheoryTermFunction, TheoryTermUnparsed > TheoryTerm
A variant for the different theory terms.
Definition theory.hh:22
Represents a predicate signature.
Definition base.h:58
size_t size
the size of the name
Definition base.h:60
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