Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of MoveMakers


Ignore:
Timestamp:
06/10/10 11:54:31 (15 years ago)
Author:
mkofler
Comment:

Added move maker descriptions

Legend:

Unmodified
Added
Removed
Modified
  • MoveMakers

    v1 v1  
     1[[PageOutline]]
     2= Move Makers =
     3
     4----
     5==  Move Makers for Binary Encoding ==
     6=== !OneBitflipMoveMaker ===
     7Peforms a one bitflip move on a given !BitVector and updates the quality.
     8
     9'''Operator Parameters:'''
     10||= Parameter         =||= Description =||
     11|| !BinaryVector || The solution as !BinaryVector. ||
     12|| !MoveQuality || The relative quality of the move. ||
     13|| !OneBitflipMove || The move to evaluate. ||
     14|| Quality || The quality of a solution. ||
     15
     16----
     17==  Move Makers for Permutation Encoding ==
     18=== !InversionMoveMaker ===
     19Peforms an inversion move (2-opt) on a given permutation and updates the quality.
     20
     21'''Operator Parameters:'''
     22||= Parameter         =||= Description =||
     23|| !InversionMove || The move to evaluate. ||
     24|| !MoveQuality || The relative quality of the move. ||
     25|| !Permutation || The solution as !Permutation. ||
     26|| Quality || The quality of a solution. ||
     27
     28=== !TranslocationMoveMaker ===
     29Peforms a translocation or insertion move (3-opt) on a given permutation and updates the quality.
     30
     31'''Operator Parameters:'''
     32||= Parameter         =||= Description =||
     33|| !MoveQuality || The relative quality of the move. ||
     34|| Permutation || The solution as Permutation. ||
     35|| Quality || The quality of a solution. ||
     36|| !TranslocationMove || The move to evaluate. ||
     37
     38----
     39==  Move Makers for Real Vector Encoding ==
     40=== !AdditiveMoveMaker ===
     41Peforms an additive move on a given real vector and updates the quality.
     42
     43'''Operator Parameters:'''
     44||= Parameter         =||= Description =||
     45|| !AdditiveMove || The move to evaluate. ||
     46|| !MoveQuality || The relative quality of the move. ||
     47|| !RealVector || The solution as real vector. ||
     48|| Quality || The quality of a solution. ||