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>
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 3 is acyclic.
Definition at line 985 of file bincube.h.
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); }
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); }