Class: Pos

Pos(tower1, tower2, tower3)

Class representing a position state of the towers

Constructor

new Pos(tower1, tower2, tower3)

Constructor function for the Pos class
Parameters:
Name Type Description
tower1 Tower Input tower for the 0 index state
tower2 Tower Input tower for the 1 index state
tower3 Tower Input tower for the 2 index state
Source:

Methods

dist(pos) → {number}

Function that calculates the approximate distance between two states. This is done by using the largest change in height of a single tower between the states.
Parameters:
Name Type Description
pos Pos The Pos to measure the distance to.
Source:
Returns:
- An integer number representing the distance.
Type
number

insert(tower, index)

Function to give the state at the given index a copy new stack identical to tower.
Parameters:
Name Type Description
tower Tower Tower which contains the stack to be copied.
index number An integer number which represents which state the tower stack shall be copied in to.
Source:

isEqualTo(pos) → {boolean}

A function to check if two Pos objects are equivalent.
Parameters:
Name Type Description
pos Pos Pos object to compare against.
Source:
Returns:
- Value of comparison oepration.
Type
boolean

topOfStack(index) → {number}

Function to return the size of the plate at the top of the stack for the given tower. If the stack is empty 0 will be returned.
Parameters:
Name Type Description
index number Integer number representing which tower the top of the stack shall come from.
Source:
Returns:
Value of the top of the stack for the given tower.
Type
number

Documentation generated by JSDoc 3.6.3 on Sun Jun 05 2022 20:20:10 GMT+0100 (BST)