summaryrefslogtreecommitdiff
path: root/src/Bitmap_cubical_complex
diff options
context:
space:
mode:
authorMathieuCarriere <mathieu.carriere3@gmail.com>2020-04-29 18:31:24 -0400
committerMathieuCarriere <mathieu.carriere3@gmail.com>2020-04-29 18:31:24 -0400
commit2b5586fd60848b159fb4fa4481e61bab0e0cd766 (patch)
treebcc0a8365179c587d9400d4880360d0cb75458f9 /src/Bitmap_cubical_complex
parent2496c33deed29fd210cbbc95583761783ee6bbbb (diff)
small modifs
Diffstat (limited to 'src/Bitmap_cubical_complex')
-rw-r--r--src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h b/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h
index 248ebdb6..eaf8a0b6 100644
--- a/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h
+++ b/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h
@@ -116,7 +116,7 @@ class Bitmap_cubical_complex_base {
* be an edge or vertex of a cube. On the other hand, the output is always indicating the position of
* a cube in the data structure.
**/
- inline int get_top_dimensional_coface_of_a_cell(int splx);
+ inline int get_top_dimensional_coface_of_a_cell(size_t splx);
/**
* This procedure compute incidence numbers between cubes. For a cube \f$A\f$ of
@@ -612,7 +612,7 @@ void Bitmap_cubical_complex_base<T>::setup_bitmap_based_on_top_dimensional_cells
}
template <typename T>
-int Bitmap_cubical_complex_base<T>::get_top_dimensional_coface_of_a_cell(int splx) {
+int Bitmap_cubical_complex_base<T>::get_top_dimensional_coface_of_a_cell(size_t splx) {
if (this->get_dimension_of_a_cell(splx) == this->dimension()){return splx;}
else{
for (auto v : this->get_coboundary_of_a_cell(splx)){