This class defines a procedure for verifying if a full-cubical neighborhood in a given set of a full cube of dimension 2 is acyclic. More...
#include <bincube.h>
Static Public Member Functions | |
static bool | check (typename SetT::iterator q, const SetT &s) |
static bool | check (int n, const SetT &s) |
This class defines a procedure for verifying if a full-cubical neighborhood in a given set of a full cube of dimension 2 is acyclic.
Definition at line 966 of file bincube.h.
static bool chomp::homology::Acyclic2d< SetT >::check | ( | typename SetT::iterator | q, | |
const SetT & | s | |||
) | [inline, static] |
Definition at line 969 of file bincube.h.
References chomp::homology::acyclic2d().
Referenced by chomp::homology::Acyclic2d< SetT >::check().
{ NeighborsBdd<typename SetT::iterator,SetT> n (q, s); return acyclic2d (n); }
static bool chomp::homology::Acyclic2d< SetT >::check | ( | int | n, | |
const SetT & | s | |||
) | [inline, static] |
Definition at line 974 of file bincube.h.
References chomp::homology::Acyclic2d< SetT >::check().
{ // FIX const cast! typename SetT::iterator q (const_cast<SetT *> (&s), n); return check (q, s); }