Difference between revisions of "Learning Haskell with Chess"

From HaskellWiki
Jump to navigation Jump to search
Line 10: Line 10:
 
<h2>Tasks</h2>
 
<h2>Tasks</h2>
 
<ul>
 
<ul>
<li>Define data types that represent boards, squares, positions, pieces and game states.</li>
+
<li>Define data types that represent boards (Board), squares (Square), positions (Pos), pieces (Piece) and game states (State).</li>
 
<li>Helium: Implement suited eq-functions.</li>
 
<li>Helium: Implement suited eq-functions.</li>
<li>Implement a function prettyBoard, that transforms a board into a clearly arranged string representation (human readable :-)). Support this function with auxiliary functions that pretty print pieces, squares, ...</li>
+
<li>Implement a function prettyBoard::Board->String, that transforms a board into a clearly arranged string representation (human readable :-)). Support this function with auxiliary functions that pretty print pieces, squares, ...</li>
<li>Define an initialBoard, test prettyBoard with initialBoard.</li>
+
<li>Define the initial board (initialBoard::Board), test prettyBoard with initialBoard.</li>
<li>Implement a simple evaluation function evalBoard::Board->Int as the difference of material on board (values: Pawn->1, Knight and Bishop->3, Queen->9, Rook->6, King->"infinity").</li>
+
<li>Implement a simple evaluation function evalBoard::Board->Int as the difference of material on board (values: Pawn->1, Knight and Bishop->3, Queen->9, Rook->6, King->"infinity"=1000).</li>
 
</ul>
 
</ul>
   

Revision as of 14:08, 18 March 2007

Exercise 1 - Data Types

Learning Targets

  • recapitulate Haskell types (keywords type and data, product and sum types)
  • Helium: define equality functions (pattern matching)
  • pretty printing

Tasks

  • Define data types that represent boards (Board), squares (Square), positions (Pos), pieces (Piece) and game states (State).
  • Helium: Implement suited eq-functions.
  • Implement a function prettyBoard::Board->String, that transforms a board into a clearly arranged string representation (human readable :-)). Support this function with auxiliary functions that pretty print pieces, squares, ...
  • Define the initial board (initialBoard::Board), test prettyBoard with initialBoard.
  • Implement a simple evaluation function evalBoard::Board->Int as the difference of material on board (values: Pawn->1, Knight and Bishop->3, Queen->9, Rook->6, King->"infinity"=1000).

Exercise 2 - Move Generator

Learning Targets

Tasks

Exercise 3 - Gametree Generation and Minimax Algorithm

Learning Targets

  • break code in modules
  • recursive data structures -> recursive algorithms

Tasks

  • Define a data type that represents a game tree.
  • Roughly estimate the number of nodes of the gametree with depth 4.
  • Define a function play::Gametree->Int, that computes the value of a given game tree using the minimax Algorithm.