include/topology/conesimplex.hpp
author Dmitriy Morozov <morozov@cs.duke.edu>
Sat, 01 Mar 2008 04:48:49 -0500
branchar
changeset 82 167a93cca2e2
parent 22 c42734397d62
permissions -rw-r--r--
Marked #c66 and #d2a as fixed (fixes in f236c7d659d0 and abba2950aced, respectively)

template<class S>
typename ConeSimplex<S>::Cycle
ConeSimplex<S>::boundary() const
{
	Cycle bdry;
	typename Parent::Cycle pbdry = Parent::boundary();

	for (typename Parent::Cycle::const_iterator cur = pbdry.begin(); cur != pbdry.end(); ++cur)
		bdry.push_back(Self(*cur, coned_));
	
	if (coned_)
		bdry.push_back(Self(*this, false));
	
	return bdry;
}

template<class S>
std::ostream&
ConeSimplex<S>::operator<<(std::ostream& out) const
{
	Parent::operator<<(out) << ' ';
	if (coned_) out << "[coned]";
	return out;
}