mln::p_key< K, P > Class Template Reference
[Queue based]

Priority queue class. More...

#include <p_key.hh>

Inheritance diagram for mln::p_key< K, P >:

Inheritance graph

List of all members.

Public Types

typedef p_double_piter< self_,
mln_bkd_eiter(util::set< K >
), typename p_set< P >
::bkd_piter
bkd_piter
 Backward Site_Iterator associated type.
typedef Site_Set< void > category
typedef P element
 Element associated type.
typedef E exact_t
typedef p_double_piter< self_,
mln_fwd_eiter(util::set< K >
), typename p_set< P >
::fwd_piter
fwd_piter
 Forward Site_Iterator associated type.
typedef std::pair< K, P > i_element
 Insertion element associated type.
typedef fwd_piter piter
 Site_Iterator associated type.
typedef p_double_psite< self_,
p_set< P > > 
psite
 Psite associated type.
typedef P r_element
 Removal element associated type.
typedef subject< P >::ret site
 Site associated type.

Public Member Functions

void change_key (const K &k, const K &new_k)
 Change the key k into a new value new_k.
template<typename F>
void change_keys (const Function_v2v< F > &f)
 Change the keys by applying the function f.
void clear ()
 Clear this site set.
bool exists_key (const K &key) const
 Test if the priority exists.
bool has (const P &p) const
 Test is the psite p belongs to this site set.
bool has (const psite &) const
 Test is the psite p belongs to this site set.
void insert (const K &k, const P &p)
 Insert a pair (key k, site p).
void insert (const i_element &k_p)
 Insert a pair k_p (key k, site p).
bool is_empty () const
 Test if the site set is empty.
bool is_valid () const
 Test this set validity so returns always true.
const K & key (const P &p) const
 Give the key associated with site p.
const util::set< K > & keys () const
 Give the set of keys.
std::size_t memory_size () const
 Return the size of this site set in memory.
unsigned nsites () const
 Give the number of sites.
const p_set< P > & operator() (const K &key) const
 Give the queue with the priority priority.
 p_key ()
 Constructor.
void remove (const P &p)
 Remove a site p.
void remove_key (const K &k)
 Remove all sites with key k.
const util::set< K > & set_1_ () const
const p_set< P > & set_2_ (const K &key) const
void unsafe_insert_ (const K &k, const P &p)

Protected Types

typedef std::map< P, K,
util::ord< P > > 
k_t
typedef std::map< K, p_set< P >
, util::ord< K > > 
s_t

Protected Member Functions

bool run_ () const

Protected Attributes

util::set< K > b_
k_t k_
unsigned n_
s_t s_

Private Types

typedef p_key< K, P > self_

Related Functions

(Note that these are not member functions.)

template<typename Sl, typename Sr>
p_set< typename Sl::site > diff (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Set theoretic difference of lhs and rhs.
template<typename Sl, typename Sr>
p_set< typename Sl::site > inter (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Intersection between a couple of point sets.
template<typename Sl, typename Sr>
bool operator< (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Strict inclusion test between site sets lhs and rhs.
template<typename S>
std::ostream & operator<< (std::ostream &ostr, const Site_Set< S > &set)
 Print a site set set into the output stream ostr.
template<typename Sl, typename Sr>
bool operator<= (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Inclusion test between site sets lhs and rhs.
template<typename Sl, typename Sr>
bool operator== (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Equality test between site sets lhs and rhs.
template<typename Sl, typename Sr>
p_set< typename Sl::site > sym_diff (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Set theoretic symmetrical difference of lhs and rhs.
template<typename Sl, typename Sr>
p_set< typename Sl::site > uni (const Site_Set< Sl > &lhs, const Site_Set< Sr > &rhs)
 Union of a couple of point sets.
template<typename S>
p_set< typename S::site > unique (const Site_Set< S > &s)
 Give the unique set of s.


Detailed Description

template<typename K, typename P>
class mln::p_key< K, P >

Priority queue class.

Definition at line 72 of file p_key.hh.


Member Typedef Documentation

template<typename K, typename P>
typedef p_double_piter<self_, mln_bkd_eiter(util::set<K>), typename p_set<P>::bkd_piter> mln::p_key< K, P >::bkd_piter

Backward Site_Iterator associated type.

Definition at line 93 of file p_key.hh.

template<typename E>
typedef Site_Set<void> mln::Site_Set< E >::category [inherited]

Reimplemented from mln::Object< E >.

Definition at line 67 of file mln/core/concept/site_set.hh.

template<typename K, typename P>
typedef P mln::p_key< K, P >::element

Element associated type.

Definition at line 79 of file p_key.hh.

template<typename E>
typedef E mln::Object< E >::exact_t [inherited]

Definition at line 172 of file object.hh.

template<typename K, typename P>
typedef p_double_piter<self_, mln_fwd_eiter(util::set<K>), typename p_set<P>::fwd_piter> mln::p_key< K, P >::fwd_piter

Forward Site_Iterator associated type.

Definition at line 88 of file p_key.hh.

template<typename K, typename P>
typedef std::pair<K,P> mln::p_key< K, P >::i_element

Insertion element associated type.

Definition at line 118 of file p_key.hh.

template<typename K, typename P>
typedef std::map<P, K, util::ord<P> > mln::p_key< K, P >::k_t [protected]

Definition at line 187 of file p_key.hh.

template<typename K, typename P>
typedef fwd_piter mln::p_key< K, P >::piter

Site_Iterator associated type.

Definition at line 96 of file p_key.hh.

template<typename K, typename P>
typedef p_double_psite< self_, p_set<P> > mln::p_key< K, P >::psite

Psite associated type.

Definition at line 83 of file p_key.hh.

template<typename K, typename P>
typedef P mln::p_key< K, P >::r_element

Removal element associated type.

Definition at line 132 of file p_key.hh.

template<typename K, typename P>
typedef std::map<K, p_set<P>, util::ord<K> > mln::p_key< K, P >::s_t [protected]

Definition at line 183 of file p_key.hh.

template<typename K, typename P>
typedef p_key<K,P> mln::p_key< K, P >::self_ [private]

Definition at line 75 of file p_key.hh.

template<typename P, typename E>
typedef subject<P>::ret mln::internal::site_set_base_< P, E >::site [inherited]

Site associated type.

Reimplemented in mln::p_centered< W >.

Definition at line 55 of file site_set_base.hh.


Constructor & Destructor Documentation

template<typename K, typename P>
mln::p_key< K, P >::p_key (  )  [inline]

Constructor.

Definition at line 208 of file p_key.hh.

References mln::p_key< K, P >::n_, and mln::p_key< K, P >::run_().


Member Function Documentation

template<typename K, typename P>
void mln::p_key< K, P >::change_key ( const K &  k,
const K &  new_k 
) [inline]

template<typename K, typename P>
template<typename F>
void mln::p_key< K, P >::change_keys ( const Function_v2v< F > &  f  )  [inline]

Change the keys by applying the function f.

Definition at line 428 of file p_key.hh.

References mln::p_key< K, P >::b_, mln::exact(), mln::util::set< T >::insert(), mln::p_key< K, P >::k_, mln::p_key< K, P >::run_(), and mln::p_key< K, P >::s_.

template<typename K, typename P>
void mln::p_key< K, P >::clear (  )  [inline]

template<typename K, typename P>
bool mln::p_key< K, P >::exists_key ( const K &  key  )  const [inline]

Test if the priority exists.

Definition at line 520 of file p_key.hh.

References mln::p_key< K, P >::b_, mln::util::set< T >::has(), and mln::p_key< K, P >::run_().

Referenced by mln::p_key< K, P >::operator()().

template<typename K, typename P>
bool mln::p_key< K, P >::has ( const P &  p  )  const [inline]

Test is the psite p belongs to this site set.

Definition at line 227 of file p_key.hh.

References mln::p_key< K, P >::k_, and mln::p_key< K, P >::run_().

template<typename K, typename P>
bool mln::p_key< K, P >::has ( const psite  )  const [inline]

Test is the psite p belongs to this site set.

Definition at line 217 of file p_key.hh.

References mln::p_key< K, P >::run_().

Referenced by mln::p_key< K, P >::insert().

template<typename K, typename P>
void mln::p_key< K, P >::insert ( const K &  k,
const P &  p 
) [inline]

template<typename K, typename P>
void mln::p_key< K, P >::insert ( const i_element k_p  )  [inline]

Insert a pair k_p (key k, site p).

Definition at line 301 of file p_key.hh.

template<typename P, typename E>
bool mln::internal::site_set_base_< P, E >::is_empty (  )  const [inline, inherited]

template<typename K, typename P>
bool mln::p_key< K, P >::is_valid (  )  const [inline]

Test this set validity so returns always true.

Definition at line 236 of file p_key.hh.

References mln::p_key< K, P >::run_().

template<typename K, typename P>
const K & mln::p_key< K, P >::key ( const P &  p  )  const [inline]

Give the key associated with site p.

Definition at line 501 of file p_key.hh.

References mln::p_key< K, P >::k_, and mln::p_key< K, P >::run_().

Referenced by mln::p_key< K, P >::run_().

template<typename K, typename P>
const util::set< K > & mln::p_key< K, P >::keys (  )  const [inline]

Give the set of keys.

Definition at line 511 of file p_key.hh.

References mln::p_key< K, P >::b_, and mln::p_key< K, P >::run_().

template<typename K, typename P>
std::size_t mln::p_key< K, P >::memory_size (  )  const [inline]

Return the size of this site set in memory.

Definition at line 475 of file p_key.hh.

References mln::p_key< K, P >::run_().

template<typename K, typename P>
unsigned mln::p_key< K, P >::nsites (  )  const [inline]

Give the number of sites.

Definition at line 245 of file p_key.hh.

References mln::p_key< K, P >::n_, and mln::p_key< K, P >::run_().

template<typename K, typename P>
const p_set< P > & mln::p_key< K, P >::operator() ( const K &  key  )  const [inline]

Give the queue with the priority priority.

This method always works: if the priority is not in this set, an empty queue is returned.

Definition at line 489 of file p_key.hh.

References mln::p_key< K, P >::exists_key(), and mln::p_key< K, P >::s_.

template<typename K, typename P>
void mln::p_key< K, P >::remove ( const P &  p  )  [inline]

template<typename K, typename P>
void mln::p_key< K, P >::remove_key ( const K &  k  )  [inline]

template<typename K, typename P>
bool mln::p_key< K, P >::run_ (  )  const [inline, protected]

template<typename K, typename P>
const util::set< K > & mln::p_key< K, P >::set_1_ (  )  const [inline]

Definition at line 529 of file p_key.hh.

References mln::p_key< K, P >::b_.

template<typename K, typename P>
const p_set< P > & mln::p_key< K, P >::set_2_ ( const K &  key  )  const [inline]

template<typename K, typename P>
void mln::p_key< K, P >::unsafe_insert_ ( const K &  k,
const P &  p 
) [inline]


Friends And Related Function Documentation

template<typename Sl, typename Sr>
p_set< typename Sl::site > diff ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Set theoretic difference of lhs and rhs.

Definition at line 66 of file set/diff.hh.

template<typename Sl, typename Sr>
p_set< typename Sl::site > inter ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Intersection between a couple of point sets.

Definition at line 62 of file set/inter.hh.

template<typename Sl, typename Sr>
bool operator< ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Strict inclusion test between site sets lhs and rhs.

Parameters:
[in] lhs A site set (strictly included?).
[in] rhs Another site set (includer?).

Definition at line 479 of file operators.hh.

template<typename S>
std::ostream & operator<< ( std::ostream &  ostr,
const Site_Set< S > &  set 
) [related, inherited]

Print a site set set into the output stream ostr.

Parameters:
[in,out] ostr An output stream.
[in] set A site set.
Returns:
The modified output stream ostr.

Definition at line 505 of file operators.hh.

template<typename Sl, typename Sr>
bool operator<= ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Inclusion test between site sets lhs and rhs.

Parameters:
[in] lhs A site set (included?).
[in] rhs Another site set (includer?).

Definition at line 491 of file operators.hh.

template<typename Sl, typename Sr>
bool operator== ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Equality test between site sets lhs and rhs.

Parameters:
[in] lhs A site set.
[in] rhs Another site set.

Definition at line 467 of file operators.hh.

template<typename Sl, typename Sr>
p_set< typename Sl::site > sym_diff ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Set theoretic symmetrical difference of lhs and rhs.

Definition at line 65 of file sym_diff.hh.

template<typename Sl, typename Sr>
p_set< typename Sl::site > uni ( const Site_Set< Sl > &  lhs,
const Site_Set< Sr > &  rhs 
) [related, inherited]

Union of a couple of point sets.

Definition at line 61 of file uni.hh.

template<typename S>
p_set< typename S::site > unique ( const Site_Set< S > &  s  )  [related, inherited]

Give the unique set of s.

Definition at line 61 of file unique.hh.


Member Data Documentation

template<typename K, typename P>
util::set<K> mln::p_key< K, P >::b_ [protected]

template<typename K, typename P>
k_t mln::p_key< K, P >::k_ [protected]

template<typename K, typename P>
unsigned mln::p_key< K, P >::n_ [protected]

template<typename K, typename P>
s_t mln::p_key< K, P >::s_ [protected]


Generated on Sun Apr 25 01:56:34 2010 for Milena (Olena) by  doxygen 1.5.6