Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 594 Bytes

readme.md

File metadata and controls

12 lines (9 loc) · 594 Bytes

EightPuzzle v1.0

This project solves the classical eightpuzzle problem using a search approach.

The project is divided into 4 packages

  • search: library to solve generic search problems. It uses a generics approach to easily implement domain-specific states and transitions. Current version only includes breadth-first and best-first search algorithms
  • task: utility library to ease the creation and execution of search tasks
  • util: various utilities
  • eightpuzzle: implementation of the eightpuzzle solver by definining specific states, actions and heuristics