[cspoker] r1401 committed - [No log message]

1 view
Skip to first unread message

codesite...@google.com

unread,
Mar 24, 2011, 4:13:19 AM3/24/11
to cspoker...@googlegroups.com
Revision: 1401
Author: thijs.lemmens
Date: Thu Mar 24 01:12:20 2011
Log: [No log message]
http://code.google.com/p/cspoker/source/detail?r=1401

Added:

/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/TLSTree.java
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/tests

/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/tests/Test.java
Deleted:

/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/AbstractTree.java
Modified:

/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/LeafNode.java

/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/RootNode.java

=======================================
--- /dev/null
+++
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/TLSTree.java
Thu Mar 24 01:12:20 2011
@@ -0,0 +1,18 @@
+package org.cspoker.ai.bots.bot.gametree.tls.nodes;
+
+import org.cspoker.common.elements.player.PlayerId;
+
+public class TLSTree {
+
+ public final PlayerId player;
+ public final RootNode root;
+ public final LeafNode parent;
+
+
+ public TLSTree(PlayerId player, LeafNode parent){
+ this.player = player;
+ this.parent = parent;
+ root = new RootNode(this);
+ }
+
+}
=======================================
--- /dev/null
+++
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/tests/Test.java
Thu Mar 24 01:12:20 2011
@@ -0,0 +1,5 @@
+package org.cspoker.ai.bots.bot.gametree.tls.tests;
+
+public class Test {
+
+}
=======================================
---
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/AbstractTree.java
Wed Mar 23 16:11:50 2011
+++ /dev/null
@@ -1,18 +0,0 @@
-package org.cspoker.ai.bots.bot.gametree.tls.nodes;
-
-import org.cspoker.common.elements.player.PlayerId;
-
-public abstract class AbstractTree {
-
- public final PlayerId player;
- public final RootNode root;
- public final LeafNode parent;
-
-
- public AbstractTree(PlayerId player, LeafNode parent){
- this.player = player;
- this.parent = parent;
- root = new RootNode(this);
- }
-
-}
=======================================
---
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/LeafNode.java
Wed Mar 23 16:30:44 2011
+++
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/LeafNode.java
Thu Mar 24 01:12:20 2011
@@ -2,7 +2,7 @@

public class LeafNode extends InnerNode {

- public AbstractTree childTree;
+ public TLSTree childTree;

public LeafNode(AbstractTLSNode parent) {
super(parent);
=======================================
---
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/RootNode.java
Wed Mar 23 16:11:50 2011
+++
/trunk/ai/bots/src/main/java/org/cspoker/ai/bots/bot/gametree/tls/nodes/RootNode.java
Thu Mar 24 01:12:20 2011
@@ -2,9 +2,9 @@

public class RootNode extends AbstractTLSNode {

- public final AbstractTree tree;
-
- public RootNode(AbstractTree tree) {
+ public final TLSTree tree;
+
+ public RootNode(TLSTree tree) {
super(null);
this.tree = tree;
this.leftChild = new LeafNode(this);

Reply all
Reply to author
Forward
0 new messages