Last change
on this file since d2e6f84 was 6c58850, checked in by Michael Brooks <mlbrooks@…>, 6 weeks ago |
Revise data in linked-list plots with streamlined harness and data from runs on swift.
No change to text discussing the plots, so some of that discussion is now stale.
Harness changes allow more ifdef feature disabling and eliminate side-array usage, keeping all per-node harness state inside the list nodes.
Completely disable the interleaving experiment, which was not giving discernable data.
|
-
Property mode
set to
100644
|
File size:
593 bytes
|
Line | |
---|
1 | // queue: inserts and removes happen at opposite ends
|
---|
2 | // insfirst: elements flow from "first," "head" or "front", to "last", "tail" or "back"
|
---|
3 | // remelem: removes happen via an element-level operation and inserts happen via the api-provided "first"/"head"/"front"
|
---|
4 |
|
---|
5 | #define BOP_TEARDOWN(lst) BFX_REMOVE_LAST(B_UserItem, lst)
|
---|
6 |
|
---|
7 | #define BOP_INSERT(lst, lastInsIter, item) BFX_INSERT_FIRST(B_UserItem, lst, (item))
|
---|
8 | #define BOP_REMOVE(lst, remIter) BFX_REMOVE_HERE(B_UserItem, lst, remIter)
|
---|
9 | #define BOP_SWITCH_REMDIR(fwd, rev) fwd
|
---|
10 |
|
---|
11 | #define BOP_REMPROGEND_IS_REMNO_BASED true
|
---|
Note:
See
TracBrowser
for help on using the repository browser.