[four-in-a-row] AI should move faster now.
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [four-in-a-row] AI should move faster now.
- Date: Wed, 18 Jun 2014 18:21:53 +0000 (UTC)
commit 08f6dded18275f01a3225502936f202eeff8230d
Author: Nikhar Agrawal <nikharagrawal2006 gmail com>
Date: Wed Jun 18 22:16:40 2014 +0530
AI should move faster now.
Reduced the number of plies to 7 from 8.
https://bugzilla.gnome.org/show_bug.cgi?id=152722
src/ai.vala | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/ai.vala b/src/ai.vala
index 247f474..a02337b 100644
--- a/src/ai.vala
+++ b/src/ai.vala
@@ -503,12 +503,12 @@ public class DecisionTree
else if (vstr[0] == 'b')
{
level = Difficulty.MEDIUM;
- plies = 8;
+ plies = 7;
}
else
{
level = Difficulty.HARD;
- plies = 8;
+ plies = 7;
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]