From fc5789e026473ea82237be847672ecb350e64479 Mon Sep 17 00:00:00 2001 From: tslil Date: Tue, 14 Jul 2026 20:22:56 +0100 Subject: license, simplify code, add README, lose "learner" naming --- src/cli.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cli.rs') diff --git a/src/cli.rs b/src/cli.rs index 7be3fd4..b408dae 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -5,7 +5,7 @@ pub enum Action { NewConfig, NewState, DumpTrajectory, - DumpLearner, + DumpIntuition, Run, } @@ -25,8 +25,8 @@ Options: --new-config Write a default config file and exit. --new-state Write a default state file and exit. --dump-trajectory Dump the play trajectory as JSON to stdout. - --dump-learner Dump learner weights as JSON to stdout. - Suggest and play the next album" + --dump-intuition Dump intuition data as JSON to stdout. + Suggest and play the next album" ); } @@ -48,7 +48,7 @@ pub fn parse() -> Option { Some("--new-config") => Some(Action::NewConfig), Some("--new-state") => Some(Action::NewState), Some("--dump-trajectory") => Some(Action::DumpTrajectory), - Some("--dump-learner") => Some(Action::DumpLearner), + Some("--dump-intuition") => Some(Action::DumpIntuition), Some(unknown) => { eprintln!("Unknown option: {unknown}"); std::process::exit(1); -- cgit v1.2.3