metropolis process

Table of Contents

Algorithm of network exploration that favours node with fewer degree.

Algorithm:

  1. select a neighbor at random
  2. set probability of moving to it as \(\frac{d_\test{self}}{d_\text{neighbor}}\) (which is smaller when neighbor have more links, therefore favor node with less links)
  3. If the probability is larger than 1 (neighbor have fewer links), move to neighbort
  4. if not, generate a random number in \([0,1)\), if it is larger than the probability, then move to the neighbor/otherwise don’t move

Backlinks

network exploration

Author: Linfeng He

Created: 2024-04-03 Wed 20:58