Files
neuroevolution/mathema/main.py
2025-12-13 14:12:35 +01:00

18 lines
311 B
Python

import asyncio
from mathema.genotype.neo4j.genotype import test_add_neuron
async def main():
# polis = Polis()
# await polis.create()
# await polis.start()
# await polis.stop()
# await test_mut_operators()
await test_add_neuron()
if __name__ == '__main__':
asyncio.run(main())