Update model.py to replace AgentSet with _HardKeyAgentSet#3224
Merged
Update model.py to replace AgentSet with _HardKeyAgentSet#3224
model.py to replace AgentSet with _HardKeyAgentSet#3224Conversation
4 tasks
|
Performance benchmarks:
|
quaquel
approved these changes
Jan 30, 2026
Member
quaquel
left a comment
There was a problem hiding this comment.
This looks good to me. I particularly appreciate the very clear docstrings.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR finalizes the agent storage refactor by fully integrating
_HardKeyAgentSetas the primary storage mechanism inModel.Previously,
Modelmaintained two parallel structures:self._agents(for lookups and maintaining Hard References of agents) andself._all_agentsfor iteration. This duality created memory redundancy.This PR resolves it by:
self._agents(the raw dictionary).self._all_agentsto be an instance of_HardKeyAgentSet.self._agents_by_typeto use_HardKeyAgentSetfor type-specific groups.See #3128 and #3160 for complete discussion
Ticks (3) from #3209
Resolves #3128
This is a follow-up PR of #3210 and #3219