Static Public Member Functions

chomp::homology::Acyclic3d< SetT > Class Template Reference

This class defines a procedure for verifying if a full-cubical neighborhood in a given set of a full cube of dimension 3 is acyclic. More...

#include <bincube.h>

List of all members.

Static Public Member Functions

static bool check (typename SetT::iterator q, const SetT &s)
static bool check (int n, const SetT &s)

Detailed Description

template<class SetT>
class chomp::homology::Acyclic3d< SetT >

This class defines a procedure for verifying if a full-cubical neighborhood in a given set of a full cube of dimension 3 is acyclic.

Definition at line 985 of file bincube.h.


Member Function Documentation

template<class SetT >
static bool chomp::homology::Acyclic3d< SetT >::check ( typename SetT::iterator  q,
const SetT &  s 
) [inline, static]

Definition at line 988 of file bincube.h.

References chomp::homology::acyclic3d().

Referenced by chomp::homology::Acyclic3d< SetT >::check().

        {
                NeighborsBdd<typename SetT::iterator,SetT> n (q, s);
                return acyclic3d (n);
        }

template<class SetT >
static bool chomp::homology::Acyclic3d< SetT >::check ( int  n,
const SetT &  s 
) [inline, static]

Definition at line 993 of file bincube.h.

References chomp::homology::Acyclic3d< SetT >::check().

        {
                // FIX const cast!
                typename SetT::iterator q (const_cast<SetT *> (&s), n);
                return check (q, s);
        }


The documentation for this class was generated from the following file: