- This update adds DynamicArray<T>. This is a bare bones heap allocated array that...
authorTim King <taking@cs.nyu.edu>
Mon, 27 Sep 2010 21:10:47 +0000 (21:10 +0000)
committerTim King <taking@cs.nyu.edu>
Mon, 27 Sep 2010 21:10:47 +0000 (21:10 +0000)
commit595751a1814cc9375318c9c158caf6426eeda791
tree91cd27f6f3de253cea4c8350307d0c8a0ee5383e
parent6e59b60947283d864877c2c2dc883e878913a2d8
- This update adds DynamicArray<T>.  This is a bare bones heap allocated array that dynamically can increase in size.  This has functionality similar to vector<T>. The main difference is that it can be constructed in an ill-formed manner. This means that it can generalize CDList<T>.
- CDVector<T> has been added. This is intended to allow for context-dependent destructive updates, while the vector size increases are permanent. Behaviorally, this is most similar to vector< CDO<T> >. The differences between the two are: only one ContextObj is registered to the Context, backtracks are done in a lazy fashion, CDVector::push_back(val) sets the value of back() at context level 0 to val where vector<CDO<T>>::push_back(val) sets back() at the current context level to val and back() at context level 0 to the default constructor T().
src/context/Makefile.am
src/context/cdvector.h [new file with mode: 0644]
src/util/Makefile.am
src/util/dynamic_array.h [new file with mode: 0644]
test/unit/Makefile.am
test/unit/context/cdvector_black.h [new file with mode: 0644]