18 lines
311 B
Python
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())
|