Changeset 64e9fef for doc/theses/thierry_delisle_PhD/code
- Timestamp:
- Jun 2, 2020, 3:56:17 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0da5cd5
- Parents:
- 16ee228
- Location:
- doc/theses/thierry_delisle_PhD/code
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/code/snzi.hpp
r16ee228 r64e9fef 151 151 { 152 152 int width = std::pow(base, depth); 153 std::cout << "SNZI: " << depth << "x" << width << "(" << mask - 1 << ")" << std::endl; 153 154 for(int i = 0; i < root; i++) { 154 155 nodes[i].parent = &nodes[(i / base) + width ]; -
doc/theses/thierry_delisle_PhD/code/snzm.hpp
r16ee228 r64e9fef 180 180 { 181 181 int width = 1 << depth; 182 std::cout << "SNZI with Mask: " << depth << "x" << width << "(" << mask << ")" << std::endl; 182 183 for(int i = 0; i < root; i++) { 183 184 nodes[i].is_leaf = i < width;
Note: See TracChangeset
for help on using the changeset viewer.