9 lines
183 B
Markdown
9 lines
183 B
Markdown
# 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));
|
|
```
|