CASM
1.1.0
A Clusters Approach to Statistical Mechanics
|
#include <Enumerator.hh>
Abstract base class for enumerators.
Definition at line 105 of file Enumerator.hh.
Public Types | |
typedef long | step_type |
Public Member Functions | |
EnumeratorBase () | |
Default constructor. More... | |
virtual | ~EnumeratorBase () |
step_type | step () const |
Increments with each enumerated object. More... | |
bool | valid () const |
Returns false if enumeration is complete. More... | |
virtual jsonParser | source (step_type step) const |
virtual std::string | name () const =0 |
Derived enumerators must implement name, via ENUM_MEMBERS. More... | |
Protected Member Functions | |
void | _initialize () |
void | _set_step (step_type val) |
Set current step value. More... | |
void | _increment_step () |
Increment current step value. More... | |
void | _decrement_step () |
Decrement current step value. More... | |
void | _invalidate () |
Call if enumeration complete. More... | |
void | _validate () |
Used if random access enumerator step is moved into valid range. More... | |
Private Attributes | |
bool | m_valid |
step_type | m_step |
typedef long CASM::EnumeratorBase::step_type |
Definition at line 107 of file Enumerator.hh.
|
inline |
Default constructor.
Definition at line 110 of file Enumerator.hh.
|
inlinevirtual |
Definition at line 112 of file Enumerator.hh.
|
inlineprotected |
Decrement current step value.
Definition at line 156 of file Enumerator.hh.
|
inlineprotected |
Increment current step value.
Definition at line 153 of file Enumerator.hh.
|
inlineprotected |
|
inlineprotected |
Call if enumeration complete.
Definition at line 159 of file Enumerator.hh.
|
inlineprotected |
Set current step value.
Definition at line 150 of file Enumerator.hh.
|
inlineprotected |
Used if random access enumerator step is moved into valid range.
Definition at line 162 of file Enumerator.hh.
|
pure virtual |
Derived enumerators must implement name, via ENUM_MEMBERS.
Implemented in CASM::LatticeEnumEquivalents, CASM::SuperConfigEnum, CASM::ScelEnumEquivalents, CASM::ScelEnumByProps, CASM::ConfigEnumStrain, CASM::ConfigEnumSiteDoFs, CASM::ConfigEnumRandomOccupations, CASM::ConfigEnumRandomLocal, CASM::ConfigEnumByPermutation, and CASM::ConfigEnumAllOccupations.
|
inlinevirtual |
Default Object source just uses step#
Returns:
Definition at line 129 of file Enumerator.hh.
|
inline |
Increments with each enumerated object.
Definition at line 115 of file Enumerator.hh.
|
inline |
Returns false if enumeration is complete.
Definition at line 118 of file Enumerator.hh.
|
private |
Definition at line 167 of file Enumerator.hh.
|
private |
Definition at line 165 of file Enumerator.hh.