You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed KillForward action not executing: The KillForward action was incorrectly placed after NumActions in the enum, which meant it was never included in the active actions array. This has been fixed by moving KillForward before NumActions, allowing the kill action to function properly.
Configuration
Increased kill threshold: The kill action threshold has been increased from 0.5 to 0.95 to reduce excessive killing. This means only neural network outputs that normalize to above 95% can trigger kill attempts, making killing a more strategic and less frequent action.
Features
Kill genome action: Agents can now use the KillForward action to eliminate neighboring agents in the direction of forward movement. This feature is controlled by the killenable parameter in the config file (default: true).