-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTagState.cpp
42 lines (36 loc) · 1.21 KB
/
TagState.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "TagState.hpp"
namespace PostTagSystem {
TagState::TagState(const std::vector<bool>& inputTape, uint8_t inputHeadState)
: tape(inputTape), headState(inputHeadState) {}
TagState::TagState(uint64_t tapeLength, uint64_t tapeContents, uint8_t inputHeadState) {
this->headState = inputHeadState;
tape.resize(tapeLength);
for (auto tapeIt = tape.rbegin(); tapeIt != tape.rend(); ++tapeIt) {
*tapeIt = tapeContents & 1;
tapeContents >>= 1;
}
}
bool TagState::empty() const { return tape.empty(); }
bool TagState::operator==(const TagState& other) const { return headState == other.headState && tape == other.tape; }
bool TagState::operator!=(const TagState& other) const { return !(*this == other); }
TagState& TagState::increment(uint8_t phaseCount) {
++headState;
if (headState == phaseCount) {
headState = 0;
int tapeIndex;
for (tapeIndex = static_cast<int>(tape.size() - 1); tapeIndex >= 0; --tapeIndex) {
if (tape[tapeIndex] == 0) {
tape[tapeIndex] = 1;
break;
} else {
tape[tapeIndex] = 0;
}
}
if (tapeIndex < 0) {
tape = std::vector<bool>(tape.size() + 1, 0);
tape[0] = 1;
}
}
return *this;
}
} // namespace PostTagSystem