add control flags to simulation

This commit is contained in:
JOLIMAITRE Matthieu 2024-05-02 16:27:59 +02:00
parent aab2e60dab
commit 9d36edecc9
3 changed files with 39 additions and 8 deletions

View file

@ -1,6 +1,8 @@
export { Dict } from "./dict.ts";
export type { Guessing } from "./guesser/guesser.ts";
export { BaseGuesser } from "./guesser/base.ts";
export { ReducingGuesser } from "./guesser/reducing.ts";
export { Simulator } from "./game/simulator.ts";
export { ManualProxy } from "./game/proxy.ts";
export { Runner } from "./runner.ts";
export { Runner, TableLogging, VerboseLogging } from "./runner.ts";
export type { LoggingStrategy } from "./runner.ts";