remove notepad

This commit is contained in:
2026-03-23 14:21:23 +01:00
parent a1f282a1c8
commit 61a5507f5c
2 changed files with 3 additions and 16 deletions

3
.gitignore vendored
View File

@@ -4,3 +4,6 @@
/temp
.justfile
*.svg
NOTEPAD.md
/.claude

View File

@@ -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<Item = P>;
fn weights(&self) -> impl Iterator<Item = f64>;
fn score(&self) -> u16;
}
```