From 3677e964b0455a36c690af81d71edcbc314bfc57 Mon Sep 17 00:00:00 2001 From: David Höppner Date: Tue, 6 Apr 2010 11:38:08 +0200 Subject: New formula cheops CHEOPS (CHEss OPponent Simulator) is a fully-functional chess program capable of human-vs-human, human-vs-computer, and computer-vs-computer play. It uses a 64-square linear array board representation. The game tree search is alpha–beta, and the static evaluation function considers material, mobility, and motif features. --- Library/Formula/cheops.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Library/Formula/cheops.rb (limited to 'Library/Formula') diff --git a/Library/Formula/cheops.rb b/Library/Formula/cheops.rb new file mode 100644 index 000000000..89896bbf0 --- /dev/null +++ b/Library/Formula/cheops.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Cheops