From 61a5507f5cd3862970d684fa988d5f196ca79012 Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Mon, 23 Mar 2026 14:21:23 +0100 Subject: [PATCH] remove notepad --- .gitignore | 3 +++ NOTEPAD.md | 16 ---------------- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 NOTEPAD.md diff --git a/.gitignore b/.gitignore index cfd2b98..484a023 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ /temp .justfile *.svg +NOTEPAD.md + +/.claude diff --git a/NOTEPAD.md b/NOTEPAD.md deleted file mode 100644 index 7554c18..0000000 --- a/NOTEPAD.md +++ /dev/null @@ -1,16 +0,0 @@ -# History - -```rust -let mut history = History::new(); - -let agent_a = history.new_agent(); -let agent_b = history.new_agent_with_prior(Prior::new(Gaussian::default(), BETA, GAMMA)); -``` - -```rust -trait Team { - fn players(&self) -> impl Iterator; - fn weights(&self) -> impl Iterator; - fn score(&self) -> u16; -} -```