mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 15:32:29 +00:00
27 lines
541 B
Python
27 lines
541 B
Python
from mesa import DataCollector as MDC
|
|
|
|
class SoilDataCollector(MDC):
|
|
|
|
|
|
def __init__(self, environment, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
# Populate model and env reporters so they have a key per
|
|
# So they can be shown in the web interface
|
|
self.environment = environment
|
|
|
|
|
|
@property
|
|
def model_vars(self):
|
|
pass
|
|
|
|
@model_vars.setter
|
|
def model_vars(self, value):
|
|
pass
|
|
|
|
@property
|
|
def agent_reporters(self):
|
|
self.model._history._
|
|
|
|
pass
|
|
|