Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
import chess def simplify_fen_string(fen): parts = fen.split(' ') simplified_fen = ' '.join(parts[:4]) # Zachováváme pouze informace o pozici return simplified_fen def evaluate_position(board): #print(f"Position: {board.fen()}") if board.is_checkmate(): ### print(f"Position: {board.fen()}, return -1000") return -1000 # Mat protihráči elif board.is_stalemate() or board.is_insufficient_material() or board.can_claim_draw(): ### print(f"Position: {board.fen()}, return 0") return 0 # Remíza else: #print(f"Position: {board.fen()}, return None") return None # Hra pokračuje def create_AR_entry(result, children, last_move): return {"result": result, "children": children, "last_move": last_move, "best_child": None} def update_best_case(best_case): if best_case == 0: return best_case if best_case > 0: return best_case - 1 else: return best_case + 1 def update_AR_for_mate_in_k(board, AR, simplified_initial_fen, max_k=1000): evaluated_list = [] #print(f"") for k in range(1, max_k + 1): print(f"K = {k}") changed = False for _t in range(2): # Zajistíme, že pro každé k proběhne aktualizace dvakrát print(f"_t = {_t}") for fen in list(AR.keys()): #print(f"Fen = {fen}, looking for {simplified_initial_fen}, same = {fen == simplified_initial_fen}") board.set_fen(fen) if AR[fen]['result'] is not None: if fen == simplified_initial_fen: print(f"Finally we found a mate! {AR[fen]['result']}") return continue # Pokud již máme hodnocení, přeskočíme # Získáme výchozí hodnoty pro nejlepší a nejhorší scénář best_case = float("-inf") #worst_case = float("inf") nones_present = False best_child = None for move in board.legal_moves: #print(f"Move = {move}") board.push(move) next_fen = simplify_fen_string(board.fen()) #AR[fen]['children'].append(next_fen) if next_fen not in AR: AR[next_fen] = create_AR_entry(evaluate_position(board), None, move) evaluated_list.append(next_fen) if ((len(evaluated_list)) % 100000 == 0): print(f"Evaluated: {len(evaluated_list)}") board.pop() #for child in AR[fen]['children']: next_eval = AR[next_fen]['result'] if next_eval is not None: if (-next_eval > best_case): best_case = max(best_case, -next_eval) best_child = next_fen #worst_case = min(worst_case, -next_eval) else: nones_present = True if nones_present: if best_case > 0: AR[fen]['result'] = update_best_case(best_case) AR[fen]['best_child'] = best_child changed = True else: # Aktualizace hodnocení podle nejlepšího a nejhoršího scénáře #if worst_case == -1000: # Pokud všechny tahy vedou k matu, hráč na tahu může být matován v k tazích # AR[fen] = -1000 + k # changed = True #elif best_case <= 0: # Pokud nejlepší scénář není lepší než remíza, znamená to remízu nebo prohru # AR[fen] = max(best_case, 0) # Zabráníme nastavení hodnoty méně než 0, pokud je remíza možná # changed = True #elif best_case == 1000: # Pokud existuje alespoň jeden tah, který vede k matu protihráče, hráč na tahu může vynutit mat v k tazích # AR[fen] = 1000 - k # changed = True AR[fen]['result'] = update_best_case(best_case) AR[fen]['best_child'] = best_child changed = True ### print(f"Position = {fen}, results = {best_case} {nones_present} => {AR[fen]['result']}") if (fen == "8/8/3R4/8/8/5K2/8/4k3 b - -" or fen == "8/8/3R4/8/8/5K2/8/5k2 w - -"): print("^^^^^^^^") # remove here #break #if not changed: #break # Pokud nedošlo k žádné změně, ukončíme smyčku #if not changed: #break # Ukončíme hlavní smyčku, pokud nedošlo ke změně v poslední iteraci def print_draw_positions(AR): """ Vytiskne všechny remízové pozice (hodnota 0) zaznamenané v slovníku AR. """ print("Remízové pozice:") for fen, value in AR.items(): if True or (value > 990 and value < 1000): print(f"FEN>: {fen}, Hodnota: {value}","\n",chess.Board(fen),"<\n") def find_path_to_end(AR, fen): if AR[fen]['result'] is None: print(f"Unfortunately, there is no path that is known to be the best") fen_i = fen print(chess.Board(fen_i),"\n<") path = fen while AR[fen_i]['best_child'] is not None: fen_i = AR[fen_i]['best_child'] print(chess.Board(fen_i),"\n<") path = path + ", " + fen_i print(f"Path is: {path}") def main(): initial_fen = "1k6/5P2/2K5/8/8/8/8/8 w - - 0 1" initial_fen_original = "8/8/8/8/3Q4/5K2/8/4k3 w - - 0 1" initial_fen_mate_in_one_aka_one_ply = "3r1k2/5r1p/5Q1K/2p3p1/1p4P1/8/8/8 w - - 2 56" initial_fen_mate_in_two_aka_three_plies = "r5k1/2r3p1/pb6/1p2P1N1/3PbB1P/3pP3/PP1K1P2/3R2R1 b - - 4 28" initial_fen_mated_in_two_plies = "r5k1/2r3p1/p7/bp2P1N1/3PbB1P/3pP3/PP1K1P2/3R2R1 w - - 5 29" mate_in_two_aka_three_plies_simple = "8/8/8/8/3R4/5K2/8/4k3 w - - 0 1" mated_in_one_aka_two_plies_simple = "8/8/3R4/8/8/5K2/8/4k3 b - - 1 1" mate_in_one_aka_one_ply_simple = "8/8/3R4/8/8/5K2/8/5k2 w - - 2 2" initial_fen = mate_in_two_aka_three_plies_simple initial_fen = "1k6/5P2/2K5/8/8/8/8/8 w - - 0 1" initial_fen = "1k6/8/2K5/8/8/8/8/8 w - - 0 1" initial_fen = "8/8/8/8/8/7N/1k5K/6B1 w - - 0 1" initial_fen = "7K/8/k1P5/7p/8/8/8/8 w - - 0 1" initial_fen = "8/3k4/8/2K2R2/8/8/8/8 w - - 0 1" simplified_fen = simplify_fen_string(initial_fen) board = chess.Board(initial_fen) AR = {simplified_fen: {"result": None, "last_move": None, "children": None, "best_child": None}} # Inicializace AR s počáteční pozicí update_AR_for_mate_in_k(board, AR, simplified_fen, max_k=58) # Aktualizace AR #print_draw_positions(AR) print(f"AR for initial fen is = {AR[simplified_fen]}") find_path_to_end(AR, simplified_fen) main()
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
auctions relist for n minutes
PHP | 10 hours ago | 0.79 KB
class-avia-instagram
PHP | 13 hours ago | 46.97 KB
42:SOURCE
14 hours ago | 0.01 KB
42
14 hours ago | 0.34 KB
The Desperate Mission 2
15 hours ago | 0.74 KB
The Desperate Mission 1
15 hours ago | 0.65 KB
Rebel Dawn 14
15 hours ago | 2.58 KB
Rebel Dawn 13
15 hours ago | 0.46 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!