aboutsummaryrefslogtreecommitdiff
path: root/extract.sh
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-01-16 22:55:34 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit0f600d09518b6959ad13c3cc513f0d5f1be89d48 (patch)
tree87c43c75e781669ea565796da77391f747f079ca /extract.sh
parent12354e76ae8a1339ff6505f7187ec692bb5a1e53 (diff)
Beginning to work on probabilistic depth now that MCU is out
Diffstat (limited to 'extract.sh')
-rwxr-xr-xextract.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/extract.sh b/extract.sh
index 9f12193..1fd58ca 100755
--- a/extract.sh
+++ b/extract.sh
@@ -2,11 +2,15 @@
db_file=games_anon.db
+chosen_players="fwwwwibib archvenison NohatCoder nqeron ManaT
+SultanPepper orfane rabbitboy84 applemonkeyman Tayacan AaaarghBot
+applemonkeyman Breeze"
+# chosen_players=""
+
query() {
query="(size == $1) and (result != '1-0') and (result != '0-1') and (result != '0-0') and (result != '1/2-1/2')"
selct=""
- for player in fwwwwibib archvenison NohatCoder nqeron ManaT rabbitboy84 applemonkeyman Tayacan AaaarghBot applemonkeyman; do
- # for player in; do
+ for player in $chosen_players; do
selct="$selct(player_black == '$player') or (player_white == '$player') or "
done;
if [ -n "$selct" ]; then
@@ -58,5 +62,5 @@ make pptdb
for size in 5; do
echo
extract $size notation,result
- process $size 300000 training
+ process $size 400000 training
done