| 11 | namespace function { |
| 12 | |
| 13 | table_id_t FrontierTaskInfo::getBoundTableID() const { |
| 14 | switch (direction) { |
| 15 | case ExtendDirection::FWD: |
| 16 | return srcTableID; |
| 17 | case ExtendDirection::BWD: |
| 18 | return dstTableID; |
| 19 | default: |
| 20 | UNREACHABLE_CODE; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | table_id_t FrontierTaskInfo::getNbrTableID() const { |
| 25 | switch (direction) { |
no outgoing calls
no test coverage detected