allocator is gone, accepting any sequence in python for fill is back, refactoring in adaptive_storage

This commit is contained in:
Hans Dembinski
2017-11-05 21:54:14 +01:00
parent feadbcd05b
commit 76c596dfc4
16 changed files with 539 additions and 426 deletions

View File

@@ -35,7 +35,7 @@ int main() {
c.increase(0);
c.increase(0);
d.increase(0);
d.increase(1, 5);
d.add(1, 5);
BOOST_TEST_EQ(a.value(0), 1u);
BOOST_TEST_EQ(b.value(0), 1u);
BOOST_TEST_EQ(c.value(0), 2u);