-
Notifications
You must be signed in to change notification settings - Fork 10
/
birthday_index.cpp
117 lines (94 loc) · 2.92 KB
/
birthday_index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* birthday_index.cpp
Copyright 2017-2018 Takeki Sudo and Kazushi Ahara.
This file is part of CubicalRipser_3dim.
CubicalRipser: C++ system for computation of Cubical persistence pairs
Copyright 2017-2018 Takeki Sudo and Kazushi Ahara.
CubicalRipser is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your option)
any later version.
CubicalRipser is deeply depending on 'Ripser', software for Vietoris-Rips
persitence pairs by Ulrich Bauer, 2015-2016. We appreciate Ulrich very much.
We rearrange his codes of Ripser and add some new ideas for optimization on it
and modify it for calculation of a Cubical filtration.
This part of CubicalRiper is a calculator of cubical persistence pairs for
3 dimensional pixel data. The input data format conforms to that of DIPHA.
See more descriptions in README.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <iostream>
#include "birthday_index.h"
using namespace std;
BirthdayIndex::BirthdayIndex(){
birthday = 0;
index = -1;
dim = 1;
}
BirthdayIndex::BirthdayIndex(double _b, int _i, int _d){
birthday = _b;
index = _i;
dim = _d;
}
BirthdayIndex::BirthdayIndex(const BirthdayIndex& b){
birthday = b.birthday;
index = b.index;
dim = b.dim;
}
void BirthdayIndex::copyBirthdayIndex(BirthdayIndex v){
birthday = v.birthday;
index = v.index;
dim = v.dim;
}
double BirthdayIndex::getBirthday(){
return birthday;
}
long BirthdayIndex::getIndex(){
return index;
}
int BirthdayIndex::getDimension(){
return dim;
}
void BirthdayIndex::print(){
std::cout << "(dob:" << birthday << "," << index << ")" << std::endl;
}
void BirthdayIndex::VertexPrint(){
int px = index & 0x01ff;
int py = (index >> 9) & 0x01ff;
int pz = (index >> 18) & 0x01ff;
int pm = (index >> 27) & 0xff;
cout << "birthday : (m, z, y, x) = " << birthday << " : (" << pm << ", " << pz << ", " << py << ", " << px << ")" << endl;
}
bool BirthdayIndexComparator::operator()(const BirthdayIndex& o1, const BirthdayIndex& o2) const{
if(o1.birthday == o2.birthday){
if(o1.index < o2.index){
return true;
} else {
return false;
}
} else {
if(o1.birthday > o2.birthday){
return true;
} else {
return false;
}
}
}
bool BirthdayIndexInverseComparator::operator()(const BirthdayIndex& o1, const BirthdayIndex& o2) const{
if(o1.birthday == o2.birthday){
if(o1.index < o2.index){
return false;
} else {
return true;
}
} else {
if(o1.birthday > o2.birthday){
return false;
} else {
return true;
}
}
}