You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
5.4 KiB

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