|
3 | 3 | == Requirements ==
|
4 | 4 | # JDK 1.8 - is the baseline JDK against which this project is developed.
|
5 | 5 |
|
6 |
| -== Current Release: 0.11.1-Chp7-Complete == |
7 |
| -0.11.1-Chp7-Complete : Mar 15 2015 :<br> |
8 |
| - * Fixed Issue 33, Add implementation of - Fig 7.22 SATPlan |
9 |
| - * Improved performance of DPLL implementation and added an alternative implementation that uses a couple |
10 |
| - of trivial optimizations to improve performance by about 40% over the default DPLL implementation |
11 |
| - that matches the description in the book. |
12 |
| - * New DPLL interface added to allow people to experiment with different implementations in order to try |
13 |
| - out performance enhancement ideas from the book and other sources. |
14 |
| - * Added tests for and corrected defects found in the HybridWumpusAgent and WumpusKnowledgeBase implementations. |
| 6 | +== Current Release: 0.12.0-Search-Improvements == |
| 7 | +0.12.0-Search-Improvements : Dec 18 2016 :<br> |
| 8 | + * Improvements/Simplifications across search related APIs. |
| 9 | + * Complete set of algorithms for Chapters 22, 23 and 25 added. |
| 10 | + * Moved from JDK-7 to 8 as the baseline for further development. |
15 | 11 |
|
16 | 12 | = Details =
|
17 | 13 |
|
@@ -113,6 +109,15 @@ The Perceptron and DecisionTreeLearners work on *numerized datasets*. If you int
|
113 | 109 | 2. Learners all implement the Learner interface with 3 methods, train, predict and test. If you want to add a new type of Learner (a partitioning Decision Tree learner perhaps?) you need to implement this interface.
|
114 | 110 |
|
115 | 111 | = Change History (Update in reverse chronological order) =
|
| 112 | +0.11.1-Chp7-Complete : Mar 15 2015 :<br> |
| 113 | + * Fixed Issue 33, Add implementation of - Fig 7.22 SATPlan |
| 114 | + * Improved performance of DPLL implementation and added an alternative implementation that uses a couple |
| 115 | + of trivial optimizations to improve performance by about 40% over the default DPLL implementation |
| 116 | + that matches the description in the book. |
| 117 | + * New DPLL interface added to allow people to experiment with different implementations in order to try |
| 118 | + out performance enhancement ideas from the book and other sources. |
| 119 | + * Added tests for and corrected defects found in the HybridWumpusAgent and WumpusKnowledgeBase implementations. |
| 120 | + |
116 | 121 | 0.11.0-Chp7-Rewrite : 10 Aug 2014 :<br>
|
117 | 122 | * Rewrite of the algorithms in Chapter 7 to more closely map to pseudo-code
|
118 | 123 | in book and to resolve outstanding issues.
|
|
0 commit comments