diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 12:23:38 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 12:23:38 -0400 |
| commit | 730fc4e9bae5a157c83db8061c2c6831a297e959 (patch) | |
| tree | c0186e9f89d726c3596f9a120534490fe06a15f7 /tests/pgm_tests.cpp | |
| parent | a6c17386c4e76576f578795947c1763e06f06f46 (diff) | |
| download | dynamic-extension-730fc4e9bae5a157c83db8061c2c6831a297e959.tar.gz | |
Interface adjustments
Layout and Delete Policies are now specified via template parameters,
and rejection sampling has been removed as an argument to the mutable
buffer constructor.
Diffstat (limited to 'tests/pgm_tests.cpp')
| -rw-r--r-- | tests/pgm_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pgm_tests.cpp b/tests/pgm_tests.cpp index 254de03..80116d4 100644 --- a/tests/pgm_tests.cpp +++ b/tests/pgm_tests.cpp @@ -21,7 +21,7 @@ typedef PGM<Rec> Shard; START_TEST(t_mbuffer_init) { - auto buffer = new MutableBuffer<Rec>(1024, true, 1024); + auto buffer = new MutableBuffer<Rec>(1024, 1024); for (uint64_t i = 512; i > 0; i--) { uint32_t v = i; buffer->append({i,v, 1}); |