mons-rules 0.3.0 → 0.3.3

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.
package/README.md CHANGED
@@ -30,10 +30,16 @@ if (result.kind === "complete") {
30
30
  console.log(result.events);
31
31
  }
32
32
 
33
- const suggestion = game.suggestMove(AutomovePreference.Normal);
33
+ const suggestion = game.suggestMove(AutomovePreference.Pro);
34
34
  console.log(suggestion?.inputFen);
35
35
  ```
36
36
 
37
+ `AutomovePreference.Pro` uses the packed Pro search engine pinned by the v4
38
+ decision corpus. When a position cannot be represented safely, Pro attempts
39
+ canonical selection within the same shared deadline. It retains a legal
40
+ timeout result while canonical selection runs, starting with a packed move
41
+ when available or a deterministic legal fallback otherwise.
42
+
37
43
  FEN helpers are available when a wire-format boundary is more convenient:
38
44
 
39
45
  ```ts