summaryrefslogtreecommitdiff
path: root/src/Witness_complex/include/gudhi/Witness_complex.h
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-03-25 12:38:56 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-03-25 12:38:56 +0000
commit9280807119434e1ca4dd90267233ba01dfb0eeb6 (patch)
tree41bd747e1ca55b52a0a4d21e088ec7297aae813f /src/Witness_complex/include/gudhi/Witness_complex.h
parent1ec3e1ae82dab1109ce871f690df716fb05c6a16 (diff)
parent87032aea5bf14683d964ecd30bd9d744da975e1b (diff)
Merged latest trunk to witness
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/witness@505 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: a90ff18c8991da76cf66daec3dc8f68c049cfe57
Diffstat (limited to 'src/Witness_complex/include/gudhi/Witness_complex.h')
-rw-r--r--src/Witness_complex/include/gudhi/Witness_complex.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Witness_complex/include/gudhi/Witness_complex.h b/src/Witness_complex/include/gudhi/Witness_complex.h
index 1a96128f..c6968e44 100644
--- a/src/Witness_complex/include/gudhi/Witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Witness_complex.h
@@ -273,16 +273,12 @@ private:
if (!map.empty())
{
std::cout << map.begin()->first;
- if (map.begin()->second.children() == root())
- std::cout << "Sweet potato";
if (has_children(map.begin()))
print_sc(map.begin()->second.children());
typename Dictionary::iterator it;
for (it = map.begin()+1; it != map.end(); ++it)
{
std::cout << "," << it->first;
- if (map.begin()->second.children() == root())
- std::cout << "Sweet potato";
if (has_children(it))
print_sc(it->second.children());
}