BALL::Enumerator< Container, SiteIterator, Variant > Class Template Reference

Enumerator class. More...

#include <enumerator.h>

List of all members.


Public Types

Type definitions
typedef std::vector< Variant > VariantVector
A vector containing all possible variants for a specific site.
typedef std::pair
< SiteIterator, VariantVector >
Site
A combination of a site position and all its possible variants.
typedef std::list< Site > SiteList
A list of sites.
typedef ForwardIterator
< Enumerator< Container,
SiteIterator, Variant >
, Container, EnumeratorIndex
*, IteratorTraits_ >
Iterator
Mutable forward iterator.
typedef ConstForwardIterator
< Enumerator< Container,
SiteIterator, Variant >
, Container, EnumeratorIndex
*, IteratorTraits_ >
ConstIterator
Constant forward iterator.
typedef void(* MutatorFunction )(Variant &, const Variant &)
Site mutator function.

Public Member Functions

Constructors and Destructors
Enumerator ()
Default Constructor.
Enumerator (Container &container)
Detailed Constructor.
Enumerator (Container &container, MutatorFunction mutator)
Detailed Constructor.
~Enumerator ()
Default Destructor.
Accessors
void addVariants (const SiteIterator &it, const VariantVector &variants)
Add variants to the list of variants.
void deleteVariants (const SiteIterator &it, const VariantVector &variants)
Delete variants from the list of variants.
Size countVariants ()
Count all variants.
Container & getCurrent ()
Access the current content.
void createCombination (const Position index) throw (Exception::IndexOverflow)
Create a combination denoted by its number.
void createCombination (const EnumeratorIndex &index) throw (EnumeratorIndex::IncompatibleIndex)
Create a combination denoted by an instance of EnumeratorIndex.
Iterators
Iterator begin ()
Iterator end ()
ConstIterator begin () const
ConstIterator end () const

Protected Member Functions

void mutate_ (SiteIterator &it, const Variant &v)

Static Protected Member Functions

static void defaultAssign_ (Variant &a, const Variant &b)

Protected Attributes

Container & container_
MutatorFunction mutator_
SiteList variant_sites_
EnumeratorIndex position_
bool is_valid_position_

Friends

class IteratorTraits_

Detailed Description

template<class Container, class SiteIterator, class Variant>
class BALL::Enumerator< Container, SiteIterator, Variant >

Enumerator class.

The EnumeratorIndex class is designed to enumerate all possible combinations of things. Applications are e.g. the enumeration of all possible sequences defined through a multisequence or enumerating all possible rotamers of a peptide or a bindings site.

Enumerator uses EnumeratorIndex as an inhomogeneous counter class. It is also highly templatized in order to be adaptable to most problem instances. In general, the enumeration problem can be seen as counting with a mixed-base number. For an example of the Enumerator's usage, please refer to the tutorial.
The Enumerator's template arguments are

In the case of a string sequence that has to be mutated, the Container is of class String , the SiteIterator is of type String::Iterator, and Variant is obviously of type char.


Member Typedef Documentation

template<class Container, class SiteIterator, class Variant>
typedef void(* BALL::Enumerator< Container, SiteIterator, Variant >::MutatorFunction)(Variant &, const Variant &)

Site mutator function.

A function used to assing one variant of a site in the container to another. In the trivial case, this is just the assignment operator (as implemented in the default case), but more involved enumeration problems (e.g. side chain rotamer enumeration) might require additional code for the assignment of the true variant.


Constructor & Destructor Documentation

template<typename Container , typename SiteIterator , typename Variant >
BALL::Enumerator< Container, SiteIterator, Variant >::Enumerator ( Container & container )

Detailed Constructor.

The mutator function is set to a default mutator, using the assignment operator for Variant.

Parameters:
container a Container class to be mutated

template<class Container, class SiteIterator, class Variant>
BALL::Enumerator< Container, SiteIterator, Variant >::Enumerator ( Container & container,
MutatorFunction mutator
)

Detailed Constructor.

Parameters:
container a Container class to be mutated
mutator the function defining the mutations to be applied

Member Function Documentation

template<class Container, class SiteIterator, class Variant>
Size BALL::Enumerator< Container, SiteIterator, Variant >::countVariants ( )

Count all variants.

Returns:
the number of all possible variants

template<typename Container , typename SiteIterator , typename Variant >
void BALL::Enumerator< Container, SiteIterator, Variant >::createCombination ( const EnumeratorIndex & index ) throw (EnumeratorIndex::IncompatibleIndex)

Create a combination denoted by an instance of EnumeratorIndex.

Parameters:
index the instance of EnumeratorIndex that describes the combination to be created

template<typename Container , typename SiteIterator , typename Variant >
void BALL::Enumerator< Container, SiteIterator, Variant >::createCombination ( const Position index ) throw (Exception::IndexOverflow)

Create a combination denoted by its number.

Parameters:
index the number of the combination to be created

template<typename Container , typename SiteIterator , typename Variant >
Container & BALL::Enumerator< Container, SiteIterator, Variant >::getCurrent ( )

Access the current content.

Returns:
a reference to the container class of this enumerator

Generated on Thu Aug 6 18:30:26 2009 for BALL by doxygen 1.5.8