Skip to content
Snippets Groups Projects
Commit 7be0dc11 authored by Joana Plewnia's avatar Joana Plewnia
Browse files

added info to ReadMe

parent 34cb61d9
No related branches found
No related tags found
1 merge request!79adding aron and armem functionalities from research repo
......@@ -95,6 +95,12 @@ provider_segment.addEntity(entity=entity)
# storing itself is simple:
entity_instance.store()
# if you want to store the full memory:
for coreSegment in memory.coreSegments.values():
for providerSegment in coreSegment.providerSegments.values():
for entity in providerSegment.entities.values():
entity.store() # from here on the functions are defined recursively
```
If you already have the entity instance itself (i.e. from querying the working memory), you can simply use the last line of code from above.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment