CoolFace
Apppublic

ryosao/Artificial_Life_Simulator_GUI

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes
__init__.py21 linesDownload Raw Back to sim
1# SPDX-License-Identifier: MIT2"""3Simulation modules available to the GUI backend.4"""5 6from .neat_simulation import (  # noqa: F4017    Agent,8    Genome,9    InnovationDB,10    LAST10_PATH,11    World,12)13 14__all__ = [15    "World",16    "Agent",17    "Genome",18    "InnovationDB",19    "LAST10_PATH",20]21