Public Member Functions

mets::mana_move Class Reference
[Model]

A Mana Move is a move that can be automatically made tabu by the mets::simple_tabu_list. More...

#include <model.hh>

Inheritance diagram for mets::mana_move:
Inheritance graph
[legend]
Collaboration diagram for mets::mana_move:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual mana_moveopposite_of () const
 Create and return a new move that is the reverse of this one.
virtual bool operator== (const mana_move &other) const =0
 Tell if this move equals another w.r.t. the tabu list management (for mets::simple_tabu_list).

Detailed Description

A Mana Move is a move that can be automatically made tabu by the mets::simple_tabu_list.

If you implement this class you can use the mets::simple_tabu_list as a ready to use tabu list.

You must implement a clone() method, provide an hash funciton and provide a operator==() method that is responsible to find if a move is equal to another.

NOTE: If the desired behaviour is to declare tabu the *opposite* of the last made move you can achieve that behavioud override the opposite_of() method as well.


Member Function Documentation

virtual mana_move* mets::mana_move::opposite_of (  )  const [inline, virtual]

Create and return a new move that is the reverse of this one.

By default this just calls "clone". If this method is not overridden the mets::simple_tabu_list declares tabu the last made move. Reimplementing this method it is possibile to actually declare as tabu the opposite of the last made move (if we moved a to b we can declare tabu moving b to a).


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

Return to METSlib home page