Generated on: Thu Mar 29 07:46:58 PDT 2012 for custom file set
// doxy/ or-tools/ src/ constraint_solver/

operations_research::SimpleRevFIFO< T > Class Template Reference

utility classes More...

#include <constraint_solveri.h>

List of all members.

Public Member Functions

 SimpleRevFIFO ()
void Push (Solver *const s, T val)
void PushIfNotTop (Solver *const s, T val)
 Pushes the var on top if is not a duplicate of the current top object.
const T * Last () const
 Returns the last item of the FIFO.
const T & LastValue () const
 Returns the last value in the FIFO.
void SetLastValue (const T &v)
 Sets the last value in the FIFO.

Classes

struct  Chunk
class  Iterator
 This iterator is not stable with respect to deletion. More...


Detailed Description

template<class T>
class operations_research::SimpleRevFIFO< T >

utility classes

This class represent a reversible FIFO structure. The main diffence w.r.t a standart FIFO structure is that a Solver is given as parameter to the modifiers such that the solver can store the backtrack information Iterator's traversing order should not be changed, as some algorithm depend on it to be consistent. It's main use is to store a list of demons in the various classes of variables.

Definition at line 150 of file constraint_solveri.h.


Constructor & Destructor Documentation

template<class T>
operations_research::SimpleRevFIFO< T >::SimpleRevFIFO (  )  [inline]

Definition at line 180 of file constraint_solveri.h.


Member Function Documentation

template<class T>
void operations_research::SimpleRevFIFO< T >::Push ( Solver *const   s,
val 
) [inline]

Definition at line 182 of file constraint_solveri.h.

template<class T>
void operations_research::SimpleRevFIFO< T >::PushIfNotTop ( Solver *const   s,
val 
) [inline]

Pushes the var on top if is not a duplicate of the current top object.

Definition at line 195 of file constraint_solveri.h.

template<class T>
const T* operations_research::SimpleRevFIFO< T >::Last (  )  const [inline]

Returns the last item of the FIFO.

Definition at line 202 of file constraint_solveri.h.

template<class T>
const T& operations_research::SimpleRevFIFO< T >::LastValue (  )  const [inline]

Returns the last value in the FIFO.

Definition at line 207 of file constraint_solveri.h.

template<class T>
void operations_research::SimpleRevFIFO< T >::SetLastValue ( const T &  v  )  [inline]

Sets the last value in the FIFO.

Definition at line 213 of file constraint_solveri.h.


The documentation for this class was generated from the following file: