bioshogi 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/bioshogi/explain/attack_info.rb +1 -0
- data/lib/bioshogi/explain/distribution_ratio.rb +1285 -1253
- data/lib/bioshogi/explain/shape_info.rb +21 -5
- data/lib/bioshogi/explain/tactic_hit_turn_table.rb +1 -0
- data/lib/bioshogi/explain//346/210/246/345/236/213//344/271/235/351/226/223/351/243/233/350/273/212.kif +62 -0
- data/lib/bioshogi/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d77b033c0bd75168b15532a557174df07ac7e5c4639a0d02d7264e08a43dc72
|
|
4
|
+
data.tar.gz: 889479e831a3458fe747bbce3060eab176ba998c3b3945384b6576e9f9d5a9ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14ab1c7894f09d2c90f100f02f802e9f23f7201246cf22768d2dca349299200eced1ff7689257da5ad570345a00163e84cee1f7fc137e33571c11ce00583fcb8
|
|
7
|
+
data.tar.gz: 13aa2e25699f03517c71f62005c670b29a33a96ff059f6414b10c60aa22859698508758e618520b930910475f2cdd160865fc25ee336d23b11f59ab00eb4e152
|
data/Gemfile.lock
CHANGED
|
@@ -107,6 +107,7 @@ module Bioshogi
|
|
|
107
107
|
{ key: "楠本式石田流", parent: nil, other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: nil, order_key: nil, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: nil, kill_count_lteq: 0, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: nil, group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|
|
108
108
|
{ key: "新石田流", parent: nil, other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: 7, order_key: :sente, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: nil, kill_count_lteq: 0, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: nil, group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|
|
109
109
|
{ key: "新鬼殺し", parent: "三間飛車", other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: 7, order_key: :sente, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: nil, kill_count_lteq: 0, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: nil, group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|
|
110
|
+
{ key: "九間飛車", parent: nil, other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: nil, order_key: nil, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: nil, kill_count_lteq: 0, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: nil, group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|
|
110
111
|
{ key: "向かい飛車", parent: nil, other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: nil, order_key: nil, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: nil, kill_count_lteq: 0, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: nil, group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|
|
111
112
|
{ key: "ダイレクト向かい飛車", parent: nil, other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: nil, order_key: nil, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: false, kill_count_lteq: nil, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: "角", group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|
|
112
113
|
{ key: "メリケン向かい飛車", parent: "向かい飛車", other_parents: nil, alternate_name: nil, alias_names: nil, turn_limit: nil, turn_eq: nil, order_key: nil, not_have_pawn: nil, kill_only: nil, drop_only: nil, pawn_bishop_have_ok: nil, pawn_have_ok: nil, kill_count_lteq: 0, hold_piece_not_in: nil, hold_piece_in: nil, hold_piece_empty: nil, hold_piece_eq: nil, group_key: nil, add_to_opponent: nil, technique_matcher_info: nil, },
|