This class defines a procedure for verifying if a full-cubical neighborhood in a given set of a full cube of dimension 1 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 1 is acyclic.
Definition at line 947 of file bincube.h.
| static bool chomp::homology::Acyclic1d< SetT >::check | ( | typename SetT::iterator | q, | |
| const SetT & | s | |||
| ) | [inline, static] |
Definition at line 950 of file bincube.h.
References chomp::homology::acyclic1d().
Referenced by chomp::homology::Acyclic1d< SetT >::check().
{
NeighborsBdd<typename SetT::iterator,SetT> n (q, s);
return acyclic1d (n);
}
| static bool chomp::homology::Acyclic1d< SetT >::check | ( | int | n, | |
| const SetT & | s | |||
| ) | [inline, static] |
Definition at line 955 of file bincube.h.
References chomp::homology::Acyclic1d< SetT >::check().
{
// FIX const cast!
typename SetT::iterator q (const_cast<SetT *> (&s), n);
return check (q, s);
}
1.7.1