You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A postflop game is built from a CardConfig and an ActionTree. An ActionTree is built from a TreeConfig, a vec of added Lines, and a vec of removed Lines (Lines are just &[Action]).
We should make it easy to write tree/card configurations in JSON and serialize/deserialize these. Thus, if I wanted to invoke the solver from cli I can pass in the configurations from a JSON file.
The text was updated successfully, but these errors were encountered:
A postflop game is built from a
CardConfig
and anActionTree
. AnActionTree
is built from aTreeConfig
, a vec of addedLine
s, and a vec of removedLine
s (Line
s are just&[Action]
).We should make it easy to write tree/card configurations in JSON and serialize/deserialize these. Thus, if I wanted to invoke the solver from cli I can pass in the configurations from a JSON file.
The text was updated successfully, but these errors were encountered: