Changeset f0c3120 for doc/theses/thierry_delisle_PhD/code/snzi.hpp
- Timestamp:
- Jul 23, 2020, 1:37:31 PM (3 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 04b73b6
- Parents:
- 2e5fd8b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/code/snzi.hpp
r2e5fd8b6 rf0c3120 157 157 { 158 158 int width = std::pow(base, depth); 159 std::cout << "SNZI: " << depth << "x" << width << "(" << mask - 1 << ") " << std::endl;159 std::cout << "SNZI: " << depth << "x" << width << "(" << mask - 1 << ") " << (sizeof(snzi_t::node) * (root + 1)) << " bytes" << std::endl; 160 160 for(int i = 0; i < root; i++) { 161 nodes[i].parent = &nodes[(i / base) + width ]; 161 std::cout << i << " -> " << (i / base) + width << std::endl; 162 nodes[i].parent = &nodes[(i / base) + width]; 162 163 } 163 164 }
Note: See TracChangeset
for help on using the changeset viewer.