grid_options_defaults_dict = {
    'custom_logging_function': None, # This will hold the custom logging mem addr
    'amt_cores': 1, # total amount of cores used to evolve the population
    'verbose': 0, # Level of verbosity of the simulation


    # 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
    
    
}