40#ifndef DELAUNAY_SYNC_H
41#define DELAUNAY_SYNC_H
51#define GEO_CONNECTION_MACHINE
71#ifdef GEO_CONNECTION_MACHINE
73 typedef uint16_t thread_index_t;
74 typedef uint16_t cell_status_t;
75 static constexpr cell_status_t FREE_CELL = 32767;
76 static constexpr cell_status_t THREAD_MASK = 32767;
77 static constexpr cell_status_t CONFLICT_MASK = 32768;
79 typedef uint8_t thread_index_t;
80 typedef uint8_t cell_status_t;
81 static constexpr cell_status_t FREE_CELL = 127;
82 static constexpr cell_status_t THREAD_MASK = 127;
83 static constexpr cell_status_t CONFLICT_MASK = 128;
99 cell_status_(nullptr), size_(0), capacity_(0) {
134 cell_status_t expected = FREE_CELL;
137 cell_status_[cell].compare_exchange_strong(
139 std::memory_order_acquire,std::memory_order_acquire
143 return (expected & THREAD_MASK);
153 cell_status_[cell].store(FREE_CELL, std::memory_order_release);
165 cell_status_[cell].load(std::memory_order_relaxed) &
181 cell_status_[cell].load(std::memory_order_relaxed) &
195 cell_status_[cell].fetch_or(
196 CONFLICT_MASK, std::memory_order_relaxed
208 cell_status_[cell].store(status, std::memory_order_relaxed);
221 if(capacity_in > capacity_) {
222 capacity_ = capacity_in;
223 std::atomic<cell_status_t>* old_cell_status = cell_status_;
224 cell_status_ =
new std::atomic<cell_status_t>[capacity_];
225 for(
index_t i=0; i<capacity_; ++i) {
226 cell_status_t val = (i < size_) ?
227 old_cell_status[i].load(std::memory_order_relaxed) :
229 std::atomic_init(&cell_status_[i],val);
231 delete[] old_cell_status;
234#ifdef __cpp_lib_atomic_is_always_lock_free
235 static_assert(std::atomic<cell_status_t>::is_always_lock_free);
258 if(new_capacity > capacity_) {
259 resize(size_, new_capacity);
268 if(size_+1 >= capacity_) {
269 resize(size_+1, std::max(capacity_*2,size_+1));
271 resize(size_+1, capacity_);
291 for(
index_t i=0; i<size_; ++i) {
295 delete[] cell_status_;
296 cell_status_ =
nullptr;
302 std::atomic<cell_status_t>* cell_status_;
Assertion checking mechanism.
#define geo_debug_assert(x)
Verifies that a condition is met.
An array of cell status codes associates to each tetrahedron in a Delaunay tetrahedralization.
void resize(index_t size_in)
Resizes this CellStatusArray.
void reserve(index_t new_capacity)
Reserves additional space.
void grow()
Increases the size of the array for one additional element.
CellStatusArray(index_t size_in)
Creates a CellStatusArray.
CellStatusArray(const CellStatusArray &rhs)=delete
Forbids copy.
void mark_cell_as_conflict(index_t cell)
Marks a cell as conflict.
CellStatusArray()
Creates an empty CellStatusArray.
CellStatusArray & operator=(const CellStatusArray &rhs)=delete
Forbids copy.
void release_cell(index_t cell)
Releases a cell.
void resize(index_t size_in, index_t capacity_in)
Resizes this CellStatusArray.
void clear()
Clears this CellStatusArray.
bool cell_is_marked_as_conflict(index_t cell) const
Tests whether a cell is marked as conflict.
~CellStatusArray()
CellStatusArray destructor.
void set_cell_status(index_t cell, cell_status_t status)
Sets the status of a cell.
index_t size() const
Gets the size of this CellStatusArray.
cell_status_t cell_thread(index_t cell) const
Gets the thread that acquired a cell.
cell_status_t acquire_cell(index_t cell, cell_status_t status)
Tentatively acquires a cell.
Common include file, providing basic definitions. Should be included before anything else by all head...
bool is_running_threads()
Checks whether threads are running.
Global Vorpaline namespace.
geo_index_t index_t
The type for storing and manipulating indices.