summaryrefslogtreecommitdiff
path: root/src/self_test.cpp
blob: 02bca5e1bcd8723e84d45250133365a0ae03b703 (plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*  Copyright 2013 IST Austria
    Contributed by: Ulrich Bauer, Michael Kerber, Jan Reininghaus

    This file is part of PHAT.

    PHAT 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.

    PHAT 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 PHAT.  If not, see <http://www.gnu.org/licenses/>. */

#include <phat/compute_persistence_pairs.h>

#include <phat/representations/vector_vector.h>
#include <phat/representations/vector_set.h>
#include <phat/representations/vector_list.h>
#include <phat/representations/sparse_pivot_column.h>
#include <phat/representations/heap_pivot_column.h>
#include <phat/representations/full_pivot_column.h>
#include <phat/representations/bit_tree_pivot_column.h>

#include <phat/algorithms/twist_reduction.h>
#include <phat/algorithms/standard_reduction.h>
#include <phat/algorithms/row_reduction.h>
#include <phat/algorithms/chunk_reduction.h>
#include <phat/algorithms/spectral_sequence_reduction.h>

int main( int argc, char** argv )
{
    std::string test_data = argc > 1 ? argv[ 1 ] : "examples/torus.bin";

    typedef phat::sparse_pivot_column Sparse;
    typedef phat::heap_pivot_column Heap;
    typedef phat::full_pivot_column Full;
    typedef phat::bit_tree_pivot_column BitTree;
    typedef phat::vector_vector Vec_vec;
    typedef phat::vector_set Vec_set;
    typedef phat::vector_list Vec_list;

    std::cout << "Reading test data " << test_data << " in binary format ..." << std::endl;
    phat::boundary_matrix< Full > boundary_matrix;
    if( !boundary_matrix.load_binary( test_data ) ) {
        std::cerr << "Error: test data " << test_data << " not found!" << std::endl;
        return EXIT_FAILURE;
    }

    bool error = false;
    std::cout << "Comparing representations using Chunk algorithm ..." << std::endl;
    {
        std::cout << "Running Chunk - Sparse ..." << std::endl;
        phat::persistence_pairs sparse_pairs;
        phat::boundary_matrix< Sparse > sparse_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( sparse_pairs, sparse_boundary_matrix );

        std::cout << "Running Chunk - Heap ..." << std::endl;
        phat::persistence_pairs heap_pairs;
        phat::boundary_matrix< Heap > heap_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( heap_pairs, heap_boundary_matrix );

        std::cout << "Running Chunk - Full ..." << std::endl;
        phat::persistence_pairs full_pairs;
        phat::boundary_matrix< Full > full_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( full_pairs, full_boundary_matrix );

        std::cout << "Running Chunk - BitTree ..." << std::endl;
        phat::persistence_pairs bit_tree_pairs;
        phat::boundary_matrix< BitTree > bit_tree_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( bit_tree_pairs, bit_tree_boundary_matrix );

        std::cout << "Running Chunk - Vec_vec ..." << std::endl;
        phat::persistence_pairs vec_vec_pairs;
        phat::boundary_matrix< Vec_vec > vec_vec_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( vec_vec_pairs, vec_vec_boundary_matrix );

        std::cout << "Running Chunk - Vec_set ..." << std::endl;
        phat::persistence_pairs vec_set_pairs;
        phat::boundary_matrix< Vec_set > vec_set_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( vec_set_pairs, vec_set_boundary_matrix );

        std::cout << "Running Chunk - Vec_list ..." << std::endl;
        phat::persistence_pairs vec_list_pairs;
        phat::boundary_matrix< Vec_list > vec_list_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( vec_list_pairs, vec_list_boundary_matrix );

        if( sparse_pairs != heap_pairs ) {
            std::cerr << "Error: sparse and heap differ!" << std::endl;
            error = true;
        }
        if( heap_pairs != full_pairs ) {
            std::cerr << "Error: heap and full differ!" << std::endl;
            error = true;
        }
        if( full_pairs != vec_vec_pairs ) {
            std::cerr << "Error: full and vec_vec differ!" << std::endl;
            error = true;
        }
        if( vec_vec_pairs != vec_set_pairs ) {
            std::cerr << "Error: vec_vec and vec_set differ!" << std::endl;
            error = true;
        }
        if( vec_set_pairs != bit_tree_pairs ) {
            std::cerr << "Error: vec_set and bit_tree differ!" << std::endl;
            error = true;
        }
         if( bit_tree_pairs != vec_list_pairs ) {
            std::cerr << "Error: bit_tree and vec_list differ!" << std::endl;
            error = true;
        }
        if( vec_list_pairs != sparse_pairs ) {
            std::cerr << "Error: vec_list and sparse differ!" << std::endl;
            error = true;
        }

        if( error ) return EXIT_FAILURE;
        else std::cout << "All results are identical (as they should be)" << std::endl;
    }

    std::cout << "Comparing algorithms using BitTree representation ..." << std::endl;
    {
        std::cout << "Running Twist - BitTree ..." << std::endl;
        phat::persistence_pairs twist_pairs;
        phat::boundary_matrix< BitTree > twist_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::twist_reduction >( twist_pairs, twist_boundary_matrix );

        std::cout << "Running Standard - BitTree ..." << std::endl;
        phat::persistence_pairs std_pairs;
        phat::boundary_matrix< BitTree > std_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::standard_reduction >( std_pairs, std_boundary_matrix );

        std::cout << "Running Chunk - BitTree ..." << std::endl;
        phat::persistence_pairs chunk_pairs;
        phat::boundary_matrix< BitTree > chunk_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( chunk_pairs, chunk_boundary_matrix );

        std::cout << "Running Row - BitTree ..." << std::endl;
        phat::persistence_pairs row_pairs;
        phat::boundary_matrix< BitTree > row_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::row_reduction >( row_pairs, row_boundary_matrix );

        std::cout << "Running Spectral sequence - BitTree ..." << std::endl;
        phat::persistence_pairs ss_pairs;
        phat::boundary_matrix< BitTree > ss_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::spectral_sequence_reduction >( ss_pairs, ss_boundary_matrix );

        if( twist_pairs != std_pairs ) {
            std::cerr << "Error: twist and standard differ!" << std::endl;
            error = true;
        }
        if( std_pairs != chunk_pairs ) {
            std::cerr << "Error: standard and chunk differ!" << std::endl;
            error = true;
        }
        if( chunk_pairs != row_pairs ) {
            std::cerr << "Error: chunk and row differ!" << std::endl;
            error = true;
        }
        if( row_pairs != ss_pairs ) {
            std::cerr << "Error: row and spectral sequence differ!" << std::endl;
            error = true;
        }
        if( ss_pairs != twist_pairs ) {
            std::cerr << "Error: spectral sequence and twist differ!" << std::endl;
            error = true;
        }

        if( error ) return EXIT_FAILURE;
        else std::cout << "All results are identical (as they should be)" << std::endl;
    }

    std::cout << "Comparing primal and dual approach using Chunk - Full ..." << std::endl;
    {
        phat::persistence_pairs primal_pairs;
        phat::boundary_matrix< Full > primal_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs< phat::chunk_reduction >( primal_pairs, primal_boundary_matrix );

        phat::persistence_pairs dual_pairs;
        phat::boundary_matrix< Full > dual_boundary_matrix = boundary_matrix;
        phat::compute_persistence_pairs_dualized< phat::chunk_reduction >( dual_pairs, dual_boundary_matrix );

        if( primal_pairs != dual_pairs ) {
            std::cerr << "Error: primal and dual differ!" << std::endl;
            error = true;
        }

        if( error ) return EXIT_FAILURE;
        else std::cout << "All results are identical (as they should be)" << std::endl;
    }

    std::cout << "Testing vector<vector> interface ..." << std::endl;
    {
        std::vector< std::vector< int > > vector_vector_matrix;
        std::vector< int > vector_dims;
        boundary_matrix.save_vector_vector( vector_vector_matrix, vector_dims );
        phat::boundary_matrix< BitTree > vector_vector_boundary_matrix;
        vector_vector_boundary_matrix.load_vector_vector( vector_vector_matrix, vector_dims );

        if( vector_vector_boundary_matrix != boundary_matrix ) {
            std::cerr << "Error: [load|save]_vector_vector bug" << std::endl;
            error = true;
        }

        if( error ) return EXIT_FAILURE;
        else std::cout << "Test passed!" << std::endl;
    }

    return EXIT_SUCCESS;
}