-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove divergence computation, fix TC evaluation (#171)
divergence computation significantly reduces speed of simulation and there's little evidence to suggest it's actually valuable, TC eval was just incorrect. this fixes the bad play observed in game 4eec9c45-cacb-4d34-b5c8-62ae4011afd0 where the bot held AS pretty much guaranteeing it would take the charged QS. Co-authored-by: Tim Wilson <[email protected]>
- Loading branch information
1 parent
c2fcc91
commit e6df5af
Showing
5 changed files
with
39 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ impl Seed { | |
} | ||
} | ||
|
||
#[derive(Debug)] | ||
#[derive(Clone, Debug)] | ||
pub struct HashedSeed { | ||
seed: [u8; 32], | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters