summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-28 15:43:19 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-28 15:43:19 +0000
commitc01198fed2d886c45e007b5532c56403fc465c78 (patch)
tree8894d34527f3d342c26271af0cf915f6a962080b /src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h
parente8e889c52c96a3055a1237c389186cb08b0f6708 (diff)
Rollback uin16_t to int
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@433 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 6f25b6c7263c3eca9aa5579a4a5e6eedd9dd0464
Diffstat (limited to 'src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h')
-rw-r--r--src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h b/src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h
index bf8c65b9..0f3e689b 100644
--- a/src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h
+++ b/src/Persistent_cohomology/include/gudhi/Persistent_cohomology.h
@@ -299,11 +299,11 @@ class Persistent_cohomology {
public:
/** \brief Initializes the coefficient field.*/
- void init_coefficients(uint16_t charac) {
+ void init_coefficients(int charac) {
coeff_field_.init(charac);
}
/** \brief Initializes the coefficient field for multi-field persistent homology.*/
- void init_coefficients(uint16_t charac_min, uint16_t charac_max) {
+ void init_coefficients(int charac_min, int charac_max) {
coeff_field_.init(charac_min, charac_max);
}