#include <gudhi/Simplex_tree.h>
 
#include <iostream>
#include <ctime>
#include <string>
#include <utility>  
 
using namespace Gudhi;
 
typedef boost::adjacency_list < boost::vecS, boost::vecS, boost::undirectedS,
                                boost::property < vertex_filtration_t, Filtration_value >,
                                boost::property < edge_filtration_t, Filtration_value > > Graph_t;
 
int main(int argc, char * const argv[]) {
  if (argc != 3) {
    std::cerr << "Usage: " << argv[0]
        << " path_to_file_graph max_dim \n";
    return 0;
  }
  std::string filegraph = argv[1];
  int max_dim = atoi(argv[2]);
 
  clock_t start, end;
  
 
  start = clock();
  auto g = read_graph<Graph_t, Filtration_value, Vertex_handle>(filegraph);
  
  end = clock();
  std::clog << "Insert the 1-skeleton in the simplex tree in "
      << static_cast<double>(end - start) / CLOCKS_PER_SEC << " s. \n";
 
  start = clock();
  
  end = clock();
  std::clog << "max_dim = " << max_dim << "\n";
  std::clog << "Expand the simplex tree in "
      << static_cast<double>(end - start) / CLOCKS_PER_SEC << " s. \n";
 
  std::clog << "Information of the Simplex Tree: " << std::endl;
  std::clog << 
"  Number of vertices = " << st.
num_vertices() << 
" ";
  std::clog << 
"  Number of simplices = " << st.
num_simplices() << std::endl;
  std::clog << std::endl << std::endl;
 
  std::clog << "Iterator on vertices: ";
    std::clog << vertex << " ";
  }
 
  std::clog << std::endl;
 
  std::clog << std::endl << std::endl;
 
  std::clog << "Iterator on simplices: " << std::endl;
    std::clog << "   ";
      std::clog << vertex << " ";
    }
    std::clog << std::endl;
  }
 
  std::clog << std::endl << std::endl;
 
  std::clog << "Iterator on Simplices in the filtration, with [filtration value]:" << std::endl;
    std::clog << 
"   " << 
"[" << st.
filtration(f_simplex) << 
"] ";
      std::clog << vertex << " ";
    }
    std::clog << std::endl;
  }
 
  std::clog << std::endl << std::endl;
 
  std::clog << "Iterator on Simplices in the filtration, and their boundary simplices:" << std::endl;
    std::clog << 
"   " << 
"[" << st.
filtration(f_simplex) << 
"] ";
      std::clog << vertex << " ";
    }
    std::clog << std::endl;
 
      std::clog << 
"      " << 
"[" << st.
filtration(b_simplex) << 
"] ";
        std::clog << vertex << " ";
      }
      std::clog << std::endl;
    }
  }
  return 0;
}
Filtration_simplex_range const & filtration_simplex_range(Indexing_tag=Indexing_tag())
Returns a range over the simplices of the simplicial complex, in the order of the filtration.
Definition: Simplex_tree.h:273
Simplex_vertex_range simplex_vertex_range(Simplex_handle sh) const
Returns a range over the vertices of a simplex.
Definition: Simplex_tree.h:284
static Filtration_value filtration(Simplex_handle sh)
Returns the filtration value of a simplex.
Definition: Simplex_tree.h:537
size_t num_vertices() const
Returns the number of vertices in the complex.
Definition: Simplex_tree.h:574
void expansion(int max_dim)
Expands the Simplex_tree containing only its one skeleton until dimension max_dim.
Definition: Simplex_tree.h:1185
Boundary_simplex_range boundary_simplex_range(SimplexHandle sh)
Returns a range over the simplices of the boundary of a simplex.
Definition: Simplex_tree.h:305
size_t num_simplices()
returns the number of simplices in the simplex_tree.
Definition: Simplex_tree.h:580
void insert_graph(const OneSkeletonGraph &skel_graph)
Inserts a 1-skeleton in an empty Simplex_tree.
Definition: Simplex_tree.h:1110
Complex_simplex_range complex_simplex_range()
Returns a range over the simplices of the simplicial complex.
Definition: Simplex_tree.h:239
Complex_vertex_range complex_vertex_range()
Returns a range over the vertices of the simplicial complex. The order is increasing according to < o...
Definition: Simplex_tree.h:228
This file includes common file reader for GUDHI.
Value type for a filtration function on a cell complex.
Definition: FiltrationValue.h:20
Handle type for the vertices of a cell complex.
Definition: VertexHandle.h:15