TeDDy 4.1.0
Decision diagram library.
Loading...
Searching...
No Matches
diagram.hpp
1#ifndef LIBTEDDY_DETAILS_DIAGRAM_HPP
2#define LIBTEDDY_DETAILS_DIAGRAM_HPP
3
4#include <libteddy/details/node.hpp>
5#include <libteddy/details/node_manager.hpp>
6#include <libteddy/details/tools.hpp>
7
8namespace teddy
9{
18template<class Data, class Degree>
20{
21public:
23
24public:
33 diagram() = default;
34
41 diagram(node_t* root);
42
47 diagram(diagram const& other);
48
53 diagram(diagram&& other) noexcept;
54
59 ~diagram();
60
66 auto operator= (diagram other) -> diagram&;
67
72 auto swap (diagram& other) -> void;
73
79 auto equals (diagram const& other) const -> bool;
80
87 auto unsafe_get_root () const -> node_t*;
88
89private:
90 node_t* root_ {nullptr};
91};
92
98template<class Data, class Degree>
99auto swap (diagram<Data, Degree>& lhs, diagram<Data, Degree>& rhs) -> void
100{
101 lhs.swap(rhs);
102}
103
110template<class Data, class Degree>
111auto operator== (
112 diagram<Data, Degree> const& lhs,
113 diagram<Data, Degree> const& rhs
114) -> bool
115{
116 return lhs.equals(rhs);
117}
118
125template<class Data, class Degree>
126auto equals (diagram<Data, Degree> lhs, diagram<Data, Degree> rhs) -> bool
127{
128 return lhs.equals(rhs);
129}
130
131template<class Data, class Degree>
133 root_(id_set_notmarked(id_inc_ref_count(root)))
134{
135}
136
137template<class Data, class Degree>
139 root_(id_inc_ref_count(other.root_))
140{
141}
142
143template<class Data, class Degree>
145 root_(utils::exchange(other.root_, nullptr))
146{
147}
148
149template<class Data, class Degree>
151{
152 if (root_)
153 {
154 root_->dec_ref_count();
155 }
156}
157
158template<class Data, class Degree>
160{
161 other.swap(*this);
162 return *this;
163}
164
165template<class Data, class Degree>
167{
168 utils::swap(root_, other.root_);
169}
170
171template<class Data, class Degree>
172auto diagram<Data, Degree>::equals(diagram const& other) const -> bool
173{
174 return root_ == other.unsafe_get_root();
175}
176
177template<class Data, class Degree>
179{
180 return root_;
181}
182} // namespace teddy
183
184namespace std
185{
186template<class Data, class Degree>
187struct hash<teddy::diagram<Data, Degree>>
188{
189 [[nodiscard]] auto operator() (teddy::diagram<Data, Degree> const& diagram
190 ) const noexcept -> std::size_t
191 {
192 return ::teddy::utils::do_hash(diagram.unsafe_get_root());
193 }
194};
195
196template<class Data, class Degree>
197struct equal_to<teddy::diagram<Data, Degree>>
198{
199 [[nodiscard]] auto operator() (
202 ) const noexcept -> bool
203 {
204 return lhs.equals(rhs);
205 }
206};
207} // namespace std
208
209#endif
Cheap wrapper for the internal diagram node type.
Definition diagram.hpp:20
auto equals(diagram const &other) const -> bool
Compares node pointers in this and other diagram.
Definition diagram.hpp:172
auto operator=(diagram other) -> diagram &
Assigns pointer from the other diagram.
Definition diagram.hpp:159
auto unsafe_get_root() const -> node_t *
Returns pointer to internal node type. You should probably don't use this one unless you know what yo...
Definition diagram.hpp:178
~diagram()
Destructor. Ensures correct reference counting using RAII pattern.
Definition diagram.hpp:150
auto swap(diagram &other) -> void
Swaps pointers in this and other diagram.
Definition diagram.hpp:166
diagram()=default
Default constructed diagram. Points to no node and should not be used.
Definition node.hpp:91