You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
697 B
15 lines
697 B
# Majority Voting Examples
|
|
|
|
This directory contains examples demonstrating majority voting patterns for multi-agent decision-making.
|
|
|
|
## Examples
|
|
|
|
- [majority_voting_example_new.py](majority_voting_example_new.py) - Updated voting example
|
|
- [majority_voting_example.py](majority_voting_example.py) - Basic voting example
|
|
- [snake_game_code_voting.py](snake_game_code_voting.py) - Game code voting example
|
|
|
|
## Overview
|
|
|
|
Majority voting patterns enable groups of agents to make decisions through democratic voting processes. Agents vote on proposals, and the majority decision is implemented. This pattern is useful for consensus-building, code review, and collaborative decision-making scenarios.
|
|
|