File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
entries recording in mesa. The Memory class is a manager between the ShortTermMemory
5
5
(dque data structure) and LongTermMemory (hash map).
6
6
7
- The module contains three main components:
8
- - Priority: An enumeration defining event priority levels (HIGH, DEFAULT, LOW)
9
- - SimulationEvent: A class representing individual events with timing and execution details
10
- - EventList: A heap-based priority queue managing the chronological ordering of events
11
7
8
+ The module now contains four main component:
9
+ - Memory: The operating class for managing ShortTermMemory and LongTermMemory
10
+ - ShortTermMemory more memory-efficient and reactive (efficient store and pop functionality)
11
+ - LongTermMemory : more computational-efficient (efficient navigation)
12
12
"""
13
13
14
14
from .memory import LongTermMemory , Memory , MemoryEntry , ShortTermMemory
You can’t perform that action at this time.
0 commit comments