Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 493 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 493 Bytes

tetris-ai

Run any of the binaries in bin. Each represents a different algorithm

  • gbfs = Greedy, best-first search. Looks at current piece
  • dlbfs = Depth-limited (depth of 2) breadth-first search. Looks at current and next peice
  • minimax1 = Looks at current piece, next piece, and then assumes the following piece will be worst-case scenario.
  • minimax2 = Looks at current piece, next piece, and then assumes the following 2 pieces will be worst-case scenario.