-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatemachinebase.cpp
49 lines (37 loc) · 920 Bytes
/
statemachinebase.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
43
44
45
46
47
#include "statemachinebase.h"
StateMachineBase::StateMachineBase()
{
}
StateMachineBase::~StateMachineBase()
{
}
bool StateMachineBase::at(const unsigned long num) const
{
return this->operator [](num);
}
bool StateMachineBase::operator==(const StateMachineBase &one) const
{
if (one.size()!=this->size()) return false;
if (one.size()==0 || one.size()==1) return true;
bool compEquals = (one[0]==(*this)[0]);
for (unsigned long i=0; i<this->size(); i++){
if ( (one[i]==(*this)[i]) != compEquals)
return false;
}
return true;
}
bool StateMachineBase::operator!=(const StateMachineBase &one) const
{
return !((*this)==one);
}
unsigned long StateMachineBase::rotatedCount()
{
unsigned long rot=0;
for (unsigned i=0; i<size(); i++){
if (operator [](i))
rot++;
}
if (rot>size()/2)
rot = size()-rot;
return rot;
}