From d71fc8b0ac017302111b8cae68615719a1d6e16a Mon Sep 17 00:00:00 2001
From: David Hendriks <davidhendriks93@gmail.com>
Date: Fri, 17 Jan 2020 14:29:57 +0000
Subject: [PATCH] added some extra grid option parameters. I need to make sure
 that these dicts are so that you can change the values, but not add keys

---
 binarycpython/utils/grid_options_defaults.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/binarycpython/utils/grid_options_defaults.py b/binarycpython/utils/grid_options_defaults.py
index 8c99fec7d..5f360e7b0 100644
--- a/binarycpython/utils/grid_options_defaults.py
+++ b/binarycpython/utils/grid_options_defaults.py
@@ -1,16 +1,21 @@
 grid_options_defaults_dict = {
-    #
+    # general
     "amt_cores": 1,  # total amount of cores used to evolve the population
     "verbose": 0,  # Level of verbosity of the simulation
+    # Output dir
+    # "output_dir":
     # Custom logging
     "C_auto_logging": None,  # Should contain a dictionary where the kes are they headers and the values are lists of parameters that should be logged. This will get parsed by autogen_C_logging_code in custom_loggion_functions.py
     "C_logging_code": None,  # Should contain a string which holds the logging code.
     "custom_logging_func_memaddr": -1,  # Contains the custom_logging functions memory address
+    # Store pre-loading:
+    'store_memaddr': -1, # Contains the store object memory adress, useful for preloading. defaults to -1 and isnt used if thats the default then.
     # Log args: logging of arguments
     "log_args": 0,  #
     "log_args_dir": "/tmp/",
     # Grid variables: instructions to generate the values of the parameters
     "grid_variables": {},
+    ##
     # return_array_refs=>1, # quicker data parsing mode
     # sort_args=>1,
     # save_args=>1,
-- 
GitLab