Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
Vec.h
Go to the documentation of this file.
1/*******************************************************************************************[Vec.h]
2Copyright (c) 2003-2007, Niklas Een, Niklas Sorensson
3Copyright (c) 2007-2010, Niklas Sorensson
4
5Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6associated documentation files (the "Software"), to deal in the Software without restriction,
7including without limitation the rights to use, copy, modify, merge, publish, distribute,
8sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
9furnished to do so, subject to the following conditions:
10
11The above copyright notice and this permission notice shall be included in all copies or
12substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
15NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
17DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
18OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19**************************************************************************************************/
20
21#pragma once
22
23#include <assert.h>
24#include <new>
25
28
29#pragma GCC visibility push(default)
30namespace Minisat {
31namespace Internal {
32
33//=================================================================================================
34// Automatically resizable arrays
35//
36// NOTE! Don't use this vector on datatypes that cannot be re-located in memory (with realloc)
37
38template<class T>
39class vec {
40 T* data;
41 int sz;
42 int cap;
43
44 // Don't allow copying (error prone):
45 vec<T>& operator = (vec<T>& other) { assert(0); return *this; }
46 vec (vec<T>& other) { assert(0); }
47
48 // Helpers for calculating next capacity:
49 static inline int imax (int x, int y) { int mask = (y-x) >> (sizeof(int)*8-1); return (x&mask) + (y&(~mask)); }
50 //static inline void nextCap(int& cap){ cap += ((cap >> 1) + 2) & ~1; }
51 static inline void nextCap(int& cap){ cap += ((cap >> 1) + 2) & ~1; }
52
53public:
54 // Constructors:
55 vec() : data(nullptr), sz(0), cap(0) { }
56 explicit vec(int size) : data(nullptr), sz(0), cap(0) { growTo(size); }
57 vec(int size, const T& pad) : data(nullptr), sz(0), cap(0) { growTo(size, pad); }
58 ~vec() { clear(true); }
59
60 // Pointer to first element:
61 operator T* (void) { return data; }
62
63 // Size operations:
64 int size (void) const { return sz; }
65 void shrink (int nelems) { assert(nelems <= sz); for (int i = 0; i < nelems; i++) sz--, data[sz].~T(); }
66 void shrink_ (int nelems) { assert(nelems <= sz); sz -= nelems; }
67 int capacity (void) const { return cap; }
68 void capacity (int min_cap);
69 void growTo (int size);
70 void growTo (int size, const T& pad);
71 void clear (bool dealloc = false);
72
73 // Stack interface:
74 void push (void) { if (sz == cap) capacity(sz+1); new (&data[sz]) T(); sz++; }
75 void push (const T& elem) { if (sz == cap) capacity(sz+1); data[sz++] = elem; }
76 void push_ (const T& elem) { assert(sz < cap); data[sz++] = elem; }
77 void pop (void) { assert(sz > 0); sz--, data[sz].~T(); }
78 // NOTE: it seems possible that overflow can happen in the 'sz+1' expression of 'push()', but
79 // in fact it can not since it requires that 'cap' is equal to INT_MAX. This in turn can not
80 // happen given the way capacities are calculated (below). Essentially, all capacities are
81 // even, but INT_MAX is odd.
82
83 const T& last (void) const { return data[sz-1]; }
84 T& last (void) { return data[sz-1]; }
85
86 // Vector interface:
87 const T& operator [] (int index) const { return data[index]; }
88 T& operator [] (int index) { return data[index]; }
89
90 // Duplicatation (preferred instead):
91 void copyTo(vec<T>& copy) const { copy.clear(); copy.growTo(sz); for (int i = 0; i < sz; i++) copy[i] = data[i]; }
92 void moveTo(vec<T>& dest) { dest.clear(true); dest.data = data; dest.sz = sz; dest.cap = cap; data = nullptr; sz = 0; cap = 0; }
93};
94
95
96template<class T>
97void vec<T>::capacity(int min_cap) {
98 if (cap >= min_cap) return;
99 int add = imax((min_cap - cap + 1) & ~1, ((cap >> 1) + 2) & ~1); // NOTE: grow by approximately 3/2
100 if (add > INT_MAX - cap || (((data = (T*)::realloc(data, (cap += add) * sizeof(T))) == nullptr) && errno == ENOMEM))
101 throw OutOfMemoryException();
102 }
103
104
105template<class T>
106void vec<T>::growTo(int size, const T& pad) {
107 if (sz >= size) return;
108 capacity(size);
109 for (int i = sz; i < size; i++) data[i] = pad;
110 sz = size; }
111
112
113template<class T>
114void vec<T>::growTo(int size) {
115 if (sz >= size) return;
116 capacity(size);
117 for (int i = sz; i < size; i++) new (&data[i]) T;
118 sz = size; }
119
120
121template<class T>
122void vec<T>::clear(bool dealloc) {
123 if (data != nullptr){
124 for (int i = 0; i < sz; i++) data[i].~T();
125 sz = 0;
126 if (dealloc) free(data), data = nullptr, cap = 0;
127 }
128}
129
130//=================================================================================================
131} // namespace Internal
132} // namespace Minisat
133#pragma GCC visibility pop
int size(void) const
Definition Vec.h:64
const T & operator[](int index) const
Definition Vec.h:87
void growTo(int size, const T &pad)
Definition Vec.h:106
void pop(void)
Definition Vec.h:77
void push(const T &elem)
Definition Vec.h:75
void shrink(int nelems)
Definition Vec.h:65
static void nextCap(int &cap)
Definition Vec.h:51
vec(vec< T > &other)
Definition Vec.h:46
void clear(bool dealloc=false)
Definition Vec.h:122
void push(void)
Definition Vec.h:74
void growTo(int size)
Definition Vec.h:114
T & last(void)
Definition Vec.h:84
int capacity(void) const
Definition Vec.h:67
static int imax(int x, int y)
Definition Vec.h:49
void moveTo(vec< T > &dest)
Definition Vec.h:92
void capacity(int min_cap)
Definition Vec.h:97
vec(int size)
Definition Vec.h:56
vec(int size, const T &pad)
Definition Vec.h:57
vec< T > & operator=(vec< T > &other)
Definition Vec.h:45
void shrink_(int nelems)
Definition Vec.h:66
void copyTo(vec< T > &copy) const
Definition Vec.h:91
void push_(const T &elem)
Definition Vec.h:76
const T & last(void) const
Definition Vec.h:83
static void copy(const T &from, T &to)
Definition Alg.h:62