scml.scml2020.components.simulation
Classes
Provides a simulator to the agent. |
Module Contents
- class scml.scml2020.components.simulation.Simulation(*args, **kwargs)[source]
Provides a simulator to the agent.
- Provides:
simulator(FactorySimulator): A simulator that can be used to simulate the effect of contracts on the future of the factory
- Hooks Into:
- Remarks:
Attributessection describes the attributes that can be used to construct the component (passed to its__init__method).Providessection describes the attributes (methods, properties, data-members) made available by this component directly. Note that everything provided by the bases of this components are also available to the agent (Check theBasessection above for all the bases of this component).Requiressection describes any requirements from the agent using this component. It defines a set of methods or properties/data-members that must exist in the agent that uses this component. These requirement are usually implemented as abstract methods in the componentAbstract Objects Layersection describes abstract methods that MUST be implemented by any descendant of this component.Hooks Intosection describes the methods this component overrides callingsuper() which allows other components to hook into the same method (by overriding it). Usually callbacks starting withon_are hooked into this way.Overridessection describes the methods this component overrides without callingsupereffectively disallowing any other components after it in the MRO to call this method. Usually methods that do some action (i.e. not starting withon_) are overridden this way.
- simulator: scml.scml2020.services.FactorySimulator = None[source]