зеркало из
https://github.com/docxology/cognitive.git
synced 2025-10-29 12:16:04 +02:00
13 строки
320 B
Python
13 строки
320 B
Python
"""
|
|
Main entry point for the ant colony simulation.
|
|
"""
|
|
|
|
import argparse
|
|
import yaml
|
|
import numpy as np
|
|
from ant_colony.visualization.renderer import SimulationRenderer
|
|
from ant_colony.agents.nestmate import Nestmate, Position, TaskType
|
|
from dataclasses import dataclass
|
|
from typing import List
|
|
|
|
# ... existing code ... |