Skip to content

Commit

Permalink
Updated to harbour-reversi version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Top-Ranger committed Feb 21, 2015
1 parent a64535c commit 8032080
Show file tree
Hide file tree
Showing 23 changed files with 525 additions and 78 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2014 Marcus Soll
Copyright (C) 2014,2015 Marcus Soll
Copyright (C) 2014 Johannes Preuß
All rights reserved.

Expand Down
6 changes: 3 additions & 3 deletions android-reversi-ui_de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Das Spiel endet, wenn kein Spieler mehr einen Stein plazieren kann (es können n
<context>
<name>start</name>
<message>
<location filename="qml/android-reversi/start.qml" line="193"/>
<location filename="qml/android-reversi/start.qml" line="189"/>
<source>Start game</source>
<translation>Starte das Spiel</translation>
</message>
Expand All @@ -129,12 +129,12 @@ Das Spiel endet, wenn kein Spieler mehr einen Stein plazieren kann (es können n
<translation>Spieler 1:</translation>
</message>
<message>
<location filename="qml/android-reversi/start.qml" line="118"/>
<location filename="qml/android-reversi/start.qml" line="119"/>
<source>Player 2:</source>
<translation>Spieler 2:</translation>
</message>
<message>
<location filename="qml/android-reversi/start.qml" line="159"/>
<location filename="qml/android-reversi/start.qml" line="161"/>
<source>Language:</source>
<translation>Sprache:</translation>
</message>
Expand Down
6 changes: 3 additions & 3 deletions android-reversi-ui_en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ The game ends when both players are unable to capture. (However, there can still
<context>
<name>start</name>
<message>
<location filename="qml/android-reversi/start.qml" line="193"/>
<location filename="qml/android-reversi/start.qml" line="189"/>
<source>Start game</source>
<translation>Start game</translation>
</message>
Expand All @@ -129,12 +129,12 @@ The game ends when both players are unable to capture. (However, there can still
<translation>Player 1:</translation>
</message>
<message>
<location filename="qml/android-reversi/start.qml" line="118"/>
<location filename="qml/android-reversi/start.qml" line="119"/>
<source>Player 2:</source>
<translation>Player 2:</translation>
</message>
<message>
<location filename="qml/android-reversi/start.qml" line="159"/>
<location filename="qml/android-reversi/start.qml" line="161"/>
<source>Language:</source>
<translation>Language:</translation>
</message>
Expand Down
14 changes: 11 additions & 3 deletions android-reversi.pro
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ SOURCES += src/main.cpp \
src/player/AssemblyAIPlayer/greedycore.cpp \
src/player/AssemblyAIPlayer/insanecore.cpp \
src/player/AssemblyAIPlayer/movementcore.cpp \
src/player/AssemblyAIPlayer/areacontrolcore.cpp
src/player/AssemblyAIPlayer/areacontrolcore.cpp \
src/player/neuralnetworkaiplayer.cpp

# Installation path
# target.path =
Expand Down Expand Up @@ -88,7 +89,8 @@ HEADERS += \
src/player/AssemblyAIPlayer/frontierdiscscore.h \
src/player/AssemblyAIPlayer/greedycore.h \
src/player/AssemblyAIPlayer/insanecore.h \
src/player/AssemblyAIPlayer/movementcore.h
src/player/AssemblyAIPlayer/movementcore.h \
src/player/neuralnetworkaiplayer.h

OTHER_FILES += \
src/translation/reversi-core_de.ts \
Expand Down Expand Up @@ -116,7 +118,8 @@ OTHER_FILES += \
RESOURCES += \
src/translation/core-translation.qrc \
translation-ui.qrc \
qml.qrc
qml.qrc \
src/player/NeuralNetworkAIPlayer/NNData.qrc

SUBDIRS += \
android-reversi-ui.pro \
Expand All @@ -125,3 +128,8 @@ SUBDIRS += \
QMAKE_CXXFLAGS += -std=gnu++11

ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android

DISTFILES += \
src/player/NeuralNetworkAIPlayer/hidden1ToHidden2.txt \
src/player/NeuralNetworkAIPlayer/hidden2ToOutput.txt \
src/player/NeuralNetworkAIPlayer/inputToHidden1.txt
6 changes: 3 additions & 3 deletions qml/android-reversi/about.qml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (C) 2014 Marcus Soll
Copyright (C) 2014,2015 Marcus Soll
All rights reserved.
You may use this file under the terms of BSD license as follows:
Expand Down Expand Up @@ -54,7 +54,7 @@ Item {
width: parent.width
font.pixelSize: variable.heightText
font.bold: true
text: "Reversi Version 1.4.1"
text: "Reversi Version 1.5"
}

Text {
Expand All @@ -63,7 +63,7 @@ Item {
color: "grey"
wrapMode: Text.Wrap

text: " Copyright (C) 2014 Marcus Soll
text: " Copyright (C) 2014,2015 Marcus Soll
Copyright (C) 2014 Johannes Preuß
All rights reserved.
Expand Down
2 changes: 2 additions & 0 deletions qml/android-reversi/start.qml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ Item {
ListElement { name: "Adaptive Tree AI"}
ListElement { name: "Control AI"}
ListElement { name: "Assembly AI"}
ListElement { name: "Neural Network AI"}
}

delegate: Text { width: parent.width; font.pixelSize: variable.heightText; text: name; wrapMode: Text.Wrap
Expand Down Expand Up @@ -138,6 +139,7 @@ Item {
ListElement { name: "Adaptive Tree AI"}
ListElement { name: "Control AI"}
ListElement { name: "Assembly AI"}
ListElement { name: "Neural Network AI"}
}

delegate: Text { width: parent.width; font.pixelSize: variable.heightText; text: name; wrapMode: Text.Wrap
Expand Down
9 changes: 9 additions & 0 deletions src/core/gamemaster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#include "../player/adaptivetreeaiplayer.h"
#include "../player/controlaiplayer.h"
#include "../player/assemblyaiplayer.h"
#include "../player/neuralnetworkaiplayer.h"
#include <QDebug>

Gamemaster::Gamemaster(QObject *parent) :
Expand Down Expand Up @@ -100,6 +101,10 @@ bool Gamemaster::initialise(QString player1, QString player2, int bonus)
{
_player[0] = new AssemblyAIPlayer(this);
}
else if(player1 == "Neural Network AI")
{
_player[0] = new NeuralNetworkAIPlayer(this);
}
else
{
return false;
Expand Down Expand Up @@ -150,6 +155,10 @@ bool Gamemaster::initialise(QString player1, QString player2, int bonus)
{
_player[1] = new AssemblyAIPlayer(this);
}
else if(player2 == "Neural Network AI")
{
_player[1] = new NeuralNetworkAIPlayer(this);
}
else
{
cleanup();
Expand Down
7 changes: 7 additions & 0 deletions src/player/NeuralNetworkAIPlayer/NNData.qrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<RCC>
<qresource prefix="/NeuralNetworkAIPlayer">
<file>hidden1ToHidden2.txt</file>
<file>hidden2ToOutput.txt</file>
<file>inputToHidden1.txt</file>
</qresource>
</RCC>
1 change: 1 addition & 0 deletions src/player/NeuralNetworkAIPlayer/hidden1ToHidden2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.219255 -0.231664 0.573801 0.35206 0.562545 0.216743 0.994999 -0.382277 0.0674466 -0.228169 -0.489433 -0.915862 -0.628673 0.284184 0.246528 -0.73688 -0.57303 -0.0951532 -0.374576 -0.926484 -0.366525 0.413637 -0.54223 0.519592 0.147286 0.490999 0.732659 -0.192422 -0.610071 -0.0753937 -0.911023 -0.110348 -0.259249 -0.245362 0.973066 -0.539265 0.412702 -0.646206 -0.509314 -0.625091 0.518974 -0.551093 0.935647 -0.485344 -0.671458 0.0763271 -0.979454 -0.906623 0.706707 0.477928 -0.217757 -0.613672 0.744539 -0.0671723 0.17966 -0.0866121 -0.424731 0.525834 -0.622942 -0.95171 0.375687 0.853559 -0.276445 0.0728518 0.561317 -0.325919 0.405424 -0.340384 0.163665 0.483548 0.799506 -0.194644 0.395391 0.0382811 0.504301 0.186153 -0.592678 -0.191313 -0.934683 -0.0347096 0.22752 -0.619364 0.382024 0.0275997 -0.112683 0.777916 0.812969 0.655894 0.746001 0.741894 -0.0502203 -0.357374 0.98782 -0.069687 -0.899902 -0.151479 -0.687233 0.0674442 0.440369 -0.825033 0.824077 0.022154 -0.131235 0.0106947 -0.918804 -0.171462 0.535781 -0.926326 -0.632958 -0.353812 0.0730184 0.732198 0.119758 0.64936 0.494752 0.724087 -0.431988 0.861633 -0.196464 -0.650771 0.542515 0.928248 0.270564 -0.930952 0.483264 0.819303 0.413224 -0.432439 -0.369179 0.472576 -0.352603 -0.764993 0.400631 -0.620105 0.641856 0.0915788 0.958935 0.109233 0.35227 -0.84383 -0.0368257 0.7518 0.74071 -0.756465 -0.482325 -0.676589 0.189433 0.202539 -0.706194 -0.901345 0.596224 -0.405465 0.845893 -0.124081 -0.837918 -0.198865 -0.879096 0.182038 -0.141473 0.584776 0.144361 -0.572672 -0.403016 0.0640491 -0.0960774 0.973894 0.0660858 -0.849382 -0.590802 -0.832026 0.272042 0.408686 0.95607 -0.711503 0.763499 0.351666 0.5565 -0.555942 0.537029 0.188736 -0.425195 -0.59731 -0.363131 -0.00704235 0.540144 -0.628951 0.441144 -0.681673 0.157678 -0.315096 0.633554 -0.751867 0.489106 0.472477 0.859598 0.889334 -0.66131 0.218342 0.0848525 -0.710558 0.818438 0.297248 -0.383696 -0.19276 -0.897823 0.423157 0.836492 -0.0900701 0.365607 0.0486608 -0.392476 -0.589595 -0.083766 0.689391 0.370337 0.146614 -0.490722 0.203682 0.930417 0.0942019 -0.14655 -0.0076589 0.929996 0.911463 -0.703129 0.144897 -0.99331 -0.0618993 -0.285445 -0.475497 -0.355519 -0.390318 0.568224 -0.217294 0.705283 -0.669215 0.159894 0.318747 0.65577 0.766783 -0.92075 -0.824442 0.471881 -0.406675 0.82723 0.870513 -0.757535 0.658602 0.634376 0.163867 0.449647 -0.392776 -0.537774 0.766831 -0.0555766 -0.0733586
1 change: 1 addition & 0 deletions src/player/NeuralNetworkAIPlayer/hidden2ToOutput.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-0.169294 -0.133984 -0.798942 -0.536729 -0.18308 0.860733 -0.300908 -0.871892 -0.201527 0.0396973 -0.180454 0.333901 -0.754177 0.673786 -0.125617 -0.356412 -0.167385 0.535644 -0.768679 0.611147 0.319267 0.98459 0.167731 0.19898 -0.383312 -0.0176336 0.400261 -0.347955 -0.959166 0.047546 -0.687364 0.789622 0.752278 0.157399 0.864065 0.74895 -0.608489 0.57571 0.183128 0.157255 -0.115399 -0.379758 0.859857 -0.250235 0.459223 -0.624311 -0.0874593 0.415156 -0.174803 -0.669355 -0.550197 -0.312046 -0.435572 0.965924 0.0210763 -0.328697 0.682409 0.27373 0.645741 -0.595268 -0.621098 -0.791352 0.541413 0.657406 0.977241 -0.910006 -0.469115 0.175162 -0.941819 0.927194 0.142365 -0.650863 0.775796 -0.304451 0.391295 0.332303 -0.637709 -0.462045 0.254492 -0.407755 0.813909 0.909198 0.833678 -0.105717 -0.220598 0.667693 -0.803313 -0.268433 -0.380165 0.0795143 -0.0821709 -0.812531 -0.340749 -0.212547 0.295925 -0.767744 0.635947 0.702141 0.27248 -0.531339 -0.673938 -0.168182 0.0206875 -0.697056 -0.645888 0.0546858 0.232626 -0.441976 -0.789991 0.824041 0.0968071 -0.473272 0.429588 0.814035 -0.0475583 0.456397 0.975763 -0.497864 -0.361063 0.481402 0.810534 0.687321 -0.464222 -0.0246997 0.640281 0.94693 -0.724814 0.363609 0.864601 0.0331526 -0.839214 -0.642824 -0.298645 0.200358 -0.736064 -0.378226 -0.496438 -0.515226 -0.792507 -0.0965645 0.263219 -0.102591 -0.365894 -0.430494 -0.695953 -0.418948 0.376568 -0.397488 0.159226 -0.114603 0.295131 -0.979513 -0.361972 0.387687 -0.180184 -0.2538 0.0794157 0.85103 -0.830581 0.905781 -0.204496 -0.879609 -0.736163 -0.435469 0.695149 -0.050553 0.317948 0.906767 0.106202 -0.224144 -0.867289 0.845048 -0.221144 0.42347 0.0619799 0.0734305 -0.926994 0.75005 0.676528 0.555968 -0.661566 -0.771261 -0.891334 -0.548569 0.485841 0.468218 0.0911469 -0.522835 0.736032 0.665652 0.678614 0.709182 0.559005 -0.9939 0.652593 0.820408 -0.189285 -0.00623602 0.627586 0.760044 -0.954934 -0.282019 0.830947 0.85937 0.0138538 -0.934312 -0.42495 0.389399 0.365347 0.860834 0.421818 -0.455021 -0.479919 -0.0507163 -0.975107 0.876839 0.736516 -0.781528 0.670002 -0.855784 0.364623 0.551815 -0.505053 0.625199 -0.709663 -0.273335 0.398014 0.851562 -0.439885 0.245063 0.637715 -0.217251 -0.797789 -0.900759 0.120965 -0.578064 0.227102 -0.511506 -0.630112 0.867335 0.817767 -0.547771 0.182913 -0.202234 0.713786 -0.539752 -0.00888544 -0.602633 0.771622 -0.0719933 0.877583 -0.276625 -0.273483 -0.323603 0.315477 0.50522 -0.879179 0.322376 0.569108 0.381814 -0.551426 -0.38198 -0.205829 -0.423979 0.461649 0.709684 -0.176517 -0.988796 0.675535 0.35535 -0.360843 0.862043 -0.938899 -0.93694 -0.468741 -0.462338 -0.0747375 0.17387 0.949752 0.113672 -0.0243402 0.885404 -0.967831 -0.808362 0.575234 0.201393 0.834337 -0.799369 0.183739 0.832548 0.237812 -0.86208 -0.0137959 0.0273197 0.542794 0.741984 -0.294565 0.336426 -0.239806 -0.89729 0.617065 -0.669309 -0.418618 0.723444 0.728141 -0.767844 -0.96267 -0.00613779 -0.836846 -0.492729 -0.152866 -0.871643 0.731173 -0.619777 0.454963 0.526003 -0.326921 -0.707296 -0.251416 0.564772 -0.387635 0.296493 -0.52784 -0.150439 0.677253 0.386663 0.326492 0.881778 0.816603 0.771468 0.749861 0.172963 0.309603 -0.92202 -0.609794 -0.198536 0.451674 0.498339 0.269647 -0.609321 -0.563893 -0.128284 -0.369437 -0.456943 0.41973 -0.298954 -0.533806 -0.298486 0.775522 -0.887677 0.751371 -0.552923 -0.459045 0.751575 -0.654936 0.240561 0.0328059 0.609755 -0.405963 0.597523 0.678187 -0.200028 0.6132 -0.300553 -0.988938 -0.738348 0.261222 0.450902 -0.135509 0.401415 -0.199367 0.95633 0.750811 0.683347 0.242461 -0.539622 -0.576121 -0.86257 -0.613909 -0.302879 0.641939 0.827131 0.539759 -0.300089 -0.902095 -0.761916 -0.0744682 -0.962326 -0.440934 -0.387747 -0.211667 -0.510614 -0.826778 0.213939 0.169955 0.157696 0.980329 0.546142 0.390026 0.0197331 -0.398666 -0.518816 -0.801188 0.91708 0.114934 0.354406 0.630129 -0.0209787 -0.871883 -0.0230197 0.535858 0.486893 -0.972199 0.598145 0.806902 0.175636 0.420398 -0.205644 0.283549 -0.0313712 -0.23581 -0.695069 -0.644776 0.160463 -0.817214 -0.196583 -0.757207 -0.974806 -0.526637 0.59491 0.971237 0.863735 -0.707936 -0.725479 -0.965348 0.500172 -0.46288 0.299083 0.737945 -0.796451 -0.084035 -0.489766 0.234748 -0.95022 0.692484 -0.409711 0.250834 0.72271 0.638783 -0.539317 0.491052 -0.240798 0.155355 0.606376 -0.259453 0.212873 0.591869 -0.646433 0.648525 0.776498 0.749051 0.0723939 0.200448 0.330878 -0.428577 0.32318 0.879606 -0.0691075 0.0260129 0.933525 -0.488744 0.232662 -0.832959 0.0257704 0.803966 -0.64015 -0.605612 -0.0305352 0.56471 0.197403 -0.112686 0.27345 -0.383927 0.136147 -0.757328 -0.572637 -0.610838 0.246782 0.282526 0.656391 0.209821 0.89007 0.0653074 0.643029 -0.72577 0.774014 0.0722014 0.164035 -0.696833 0.436484 -0.412673 -0.331007 0.896393 -0.829079 -0.733184 0.813149 -0.437236 0.396053 -0.111015 0.897667 0.445589 0.449147 -0.702683 -0.724122 -0.270427 -0.173781 0.530389 0.68257 -0.254064 -0.136667 0.136816 0.500959 0.746421 -0.15758 -0.320935 0.970274 0.385249 -0.454983 -0.574765 -0.663112 -0.124191 0.242234 -0.770293 0.923586 -0.162273 -0.881997 -0.403135 0.160952 0.832347 0.133432 -0.06435 0.539822 -0.412399 0.327379 -0.996956 0.504351 -0.0965126 0.556168 0.529593 0.286678 -0.742319 -0.334378 -0.961254 0.674387 0.0790436 -0.890921 0.849213 0.719544 0.731055 0.995765 -0.733757 -0.620413 -0.832971 0.576362 0.962774 0.106614 0.279634 0.175541 0.540705 -0.642239 -0.0680328 -0.45199 0.29376 0.0598745 0.685853 -0.313586 0.13582 0.998183 0.207804 -0.949204 0.746486 -0.847583 -0.632693 -0.745207 0.870377 -0.0323015 -0.973548 -0.832465 -0.167313 0.551368 0.506262 0.476178 0.226061 0.833892 0.749252 -0.335845 -0.209713 -0.365779 -0.830584 -0.553859 -0.519116 0.69411 -0.81717 0.618737 0.71683 -0.378225 -0.563572 -0.623337 0.830878 0.796687 -0.289447 -0.960214 -0.310777 -0.803581 0.522607 -0.76899 0.513764 0.168011 -0.589663 -0.506683 -0.112603 0.133113 0.905492 0.339109 -0.0615422 -0.76333 -0.808025 0.733833 -0.276177 0.921578 0.451448 -0.971493 0.799947 -0.542394 -0.0938613 0.320657 -0.0328295 0.389472 0.534432 -0.749512 0.218567 0.93918 0.48367 -0.753039 0.864985 -0.669565 0.167465 -0.803604 -0.146105 0.0663464 0.0523953 0.56489 -0.728744 0.128236 0.126291 -0.0635678 -0.965732 -0.872272 0.0637155 0.0116581 -0.22993 0.380922 -0.928919 0.0291506 -0.119562 -0.0631704 0.420171 0.629789 -0.199752 0.527888 -0.326005 0.158302 0.433138 -0.536978 -0.402858 -0.599949 0.782903 -0.530857 0.747721 -0.244979 -0.228151 -0.5492 0.770412 -0.14319 -0.756848 0.200199 -0.638676 -0.380953 -0.85079 0.04589 -0.063098 0.721944 -0.0642776 -0.571601 0.972688 0.545798 -0.893142 -0.576707 0.0461317 0.52411 0.974464 -0.800005 -0.446847 -0.0475337 0.605917 -0.589545 -0.878072 0.224832 0.950156 0.528205 -0.291762 0.505098 0.150661 -0.889557 0.384129 -0.15344 0.059044 -0.985585 0.807164 0.737853 0.913147 0.530961 0.380052 -0.907091 -0.769603 0.476249 -0.896425 -0.319921 -0.140202 0.204601 -0.894775 -0.0223135 -0.752759 0.569742 -0.13494 -0.514654 0.87116 0.817867 0.127037 -0.550965 -0.126074 0.418389 -0.504169 0.0507005 -0.125658 0.834342 0.716215 0.0106524 0.97782 0.23239 -0.341573 -0.355276 -0.0372284 0.120786 -0.0344067 0.351794 -0.339214 0.937685 -0.591887 -0.465397 0.52278 -0.430665 0.916703 -0.0285788 -0.623995 -0.197945 -0.694201 0.606374 0.361167 0.725546 0.685383 -0.201564 -0.937635 0.0563353 -0.446591 -0.00898206 0.823971 -0.587454 0.58641 0.825593 0.257391 0.519537 0.111685 -0.307488 0.926968 -0.644828 0.262043 0.723888 0.234558 -0.770169 0.830679 -0.789 0.480304 -0.192944 -0.200182 0.47743 -0.879871 -0.939121 -0.4305 0.168891 -0.791761 -0.827191 -0.13598 -0.999236 -0.977345 -0.645234 0.327788 0.929147 -0.116441 0.632171 -0.185544 -0.233081 -0.845308 -0.459707 -0.639419 -0.766907 -0.55952 -0.226082 -0.159148 -0.562592 0.95938 0.76395 -0.682402 0.811877 0.112959 0.206342 -0.92227 0.473686 -0.762962 -0.489836 -0.645802 0.023308 0.546633 -0.802985 -0.265112 -0.219179 -0.735096 -0.770659 -0.737147 0.466229 0.935164 -0.715759 -0.778932 -0.685936 -0.0704107 -0.0409061 -0.397339 -0.385565 0.136097 -0.0851234 0.271517 0.716666 0.844874 -0.0438128 -0.185778 -0.563085 0.80427 -0.942269 -0.931289 -0.0608603 -0.51682 -0.686143 0.352071 -0.978012 0.508645 0.838454 -0.632032 -0.134641 0.294337 -0.408189 0.807373 -0.795616 0.861818 -0.84315 0.626965 0.939633 -0.163915 -0.560602 0.031569 -0.806702 0.646607 -0.683129 0.125487 -0.211097 -0.103248 0.218779 0.264925 -0.812257 0.936782 -0.351174 -0.907008 -0.154094 0.616953 -0.364094 -0.739821 -0.983683 0.22463 -0.863557 0.834223 -0.0169159 -0.378935 -0.641193 0.402304 0.744757 -0.453443 -0.961911 0.850909 -0.876934 -0.863998 0.644667 0.841922 -0.684301 -0.396175 0.519706 0.972256 0.881364 -0.87634 -0.0331023 -0.382991 -0.832055 -0.105005 0.269188 -0.528223 0.174888 0.396758 0.641236 -0.227349 0.856707 -0.168234 0.129319 -0.796363 -0.142179 -0.249687 0.442083 0.495439 -0.311513 -0.127588 0.718986 -0.284431 -0.659129 -0.914704 -0.760663 -0.767757 0.338391 0.642493 -0.936818 -0.618677 -0.778714 0.533264 0.61571 -0.186126 -0.523777 0.0594969 0.207397 -0.473726 -0.0998452 -0.419982 -0.507181 0.586548 0.396498 0.45943 0.857371 0.545219 0.217299 0.19219 -0.242706 0.531639 -0.362303 -0.277581 0.988605 0.0387353 0.0685807 -0.0571448 -0.112157 -0.605777 -0.390653 0.393446 -0.514849 0.924136 -0.967017 -0.865792 0.576478 -0.199131 -0.783839 0.813814 -0.246989 -0.426223 0.999678 -0.0758435 0.353627 -0.604003 0.487076 0.241872 -0.642039 -0.0681185 0.78827 -0.546124 -0.781855 0.956744 -0.806471 -0.023318 -0.365932 -0.357901 0.782704 0.964638 0.254624 0.523455 -0.518583 0.489477 -0.676539 0.171167 -0.45435 0.933185 -0.734651 -0.474701 0.488415 0.541465 0.19559 0.937447 0.447527 0.187574 0.391512 0.897084 0.978853
1 change: 1 addition & 0 deletions src/player/NeuralNetworkAIPlayer/inputToHidden1.txt

Large diffs are not rendered by default.

Loading

0 comments on commit 8032080

Please sign in to comment.