Implementing temporal difference learning based heavily on Encog framework.

Not functional yet - incremental update.
This commit is contained in:
2012-11-21 10:03:56 -05:00
parent 49d3b2c242
commit b723e2666e
35 changed files with 1471 additions and 470 deletions

View File

@@ -23,7 +23,7 @@
<target name="compile" depends="init" description="compile the source ">
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}" classpathref="build.classpath" debug="true" source="1.6" target="1.6"/>
<javac includeantruntime="false" srcdir="${src}" destdir="${build}" classpathref="build.classpath" debug="true"/>
</target>
<target name="compile-test" depends="compile">
@@ -33,9 +33,25 @@
</target>
<target name="copy-resources">
<copy todir="${dist}">
<copy todir="${dist}/data">
<fileset dir="data" />
</copy>
<copy todir="${build}/net/woodyfolsom/msproj/gui">
<fileset dir="${src}/net/woodyfolsom/msproj/gui">
<exclude name="**/*.java"/>
</fileset>
</copy>
<copy todir="${build}/net/woodyfolsom/msproj/sfx">
<fileset dir="${src}/net/woodyfolsom/msproj/sfx">
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<target name="copy-libs">
<copy todir="${dist}/lib">
<fileset dir="lib" />
</copy>
</target>
<target name="clean" description="clean up">
@@ -44,12 +60,12 @@
<delete dir="${dist}" />
</target>
<target name="dist" depends="compile,copy-resources" description="generate the distribution">
<target name="dist" depends="compile,copy-resources,copy-libs" description="generate the distribution">
<jar jarfile="${dist}/GoGame.jar">
<fileset dir="${build}" excludes="**/*Test.class" />
<manifest>
<attribute name="Main-Class" value="net.woodyfolsom.msproj.GoGame" />
<attribute name="Class-Path" value="kgsGtp.jar log4j-1.2.16.jar"/>
<attribute name="Main-Class" value="net.woodyfolsom.msproj.StandAloneGame" />
<attribute name="Class-Path" value="lib/kgsGtp.jar lib/log4j-1.2.16.jar lib/antlrworks-1.4.3.jar lib/encog-engine-2.5.0.jar lib/neuroph-2.6.jar"/>
</manifest>
</jar>
</target>