3a9af3f54d
- Split active strategies, reusable engine code, core classes, and legacy snakes. - Replace implicit snake imports with explicit module registrations. - Extract Prism duel, spatial, and survival behavior into focused mixins. - Improve duel scoring with food races, pressure, caches, and depth metrics. - Add deterministic arena scenarios and paired seeded engine tournaments. - Expand benchmark telemetry and bump Prism to version 1.3.0. - Update documentation and tests for the new package layout and tooling.
7 lines
236 B
Python
7 lines
236 B
Python
"""Actively maintained competitive snake strategies."""
|
|
|
|
from snakes.strategies.apex import ApexBattleSnake
|
|
from snakes.strategies.prism import PrismBattleSnake_GPT_5_6_Sol
|
|
|
|
__all__ = ("ApexBattleSnake", "PrismBattleSnake_GPT_5_6_Sol")
|