Skip to content

Commit

Permalink
Blabla
Browse files Browse the repository at this point in the history
  • Loading branch information
tsoj committed Sep 16, 2021
1 parent 3e9d6bb commit 07ea14e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion castling.nim
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const checkSensitive* = block:
for kingSource in a1..h8:
let b =
blockSensitiveKing[us][castlingSide][kingSource] and
# I don't need to check if king will be in check after the move is done
# I don't need to check if the king will be in check after the move is done
(kingSource.toBitboard or not kingTarget[us][castlingSide].toBitboard)
for square in b:
checkSensitive[us][castlingSide][kingSource].add(square)
Expand Down
2 changes: 1 addition & 1 deletion version.nim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import strutils

func version*(): string = "1.12.TODO"
func version*(): string = "14"
func compileDate*(): string = CompileDate & " " & CompileTime & " (UTC)"
func compileYear*(): string = CompileDate.split('-')[0]

0 comments on commit 07ea14e

Please sign in to comment.