Advertisement
Coriic

Untitled

May 31st, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. rateVerticalNeighbors coords listOfCoordinates = rateNeighborsSequence coords listOfCoordinates 0 -1 0 1
  2.             rateHorizontalNeighbors coords listOfCoordinates = rateNeighborsSequence coords listOfCoordinates -1 0 1 0
  3.             rateRightDiagonalNeighbors coords listOfCoordinates = rateNeighborsSequence coords listOfCoordinates -1 -1 1 1
  4.             rateLeftDiagonalNeighbors coords listOfCoordinates = rateNeighborsSequence coords listOfCoordinates -1 1 1 -1
  5.             rateNeighborsSequence (Coordinates x y) listOfCoordinates x_1 y_1 x_2 y_2
  6.                 | ((Coordinates (x+x_1) (y+y_1)) `elem` listOfCoordinates) || ((Coordinates (x+x_2) (y+y_2)) `elem` listOfCoordinates) = 1
  7.                 | otherwise = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement