FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fix: reject non-power-of-2 score lists in minimax by deepshekhardas · Pull Request #15042 · TheAlgorithms/Python · GitHub

fix: reject non-power-of-2 score lists in minimax - #15042

Open
deepshekhardas wants to merge 1 commit into
TheAlgorithms:masterfrom
deepshekhardas:fix-14886-minimax-power2
Open

fix: reject non-power-of-2 score lists in minimax#15042
deepshekhardas wants to merge 1 commit into
TheAlgorithms:masterfrom
deepshekhardas:fix-14886-minimax-power2

Conversation

Copy link
Copy Markdown

Describe your change

  • Add an algorithm?
  • Fix a bug or typo in an existing algorithm?
  • Add, change, or clarify documentation?

What does this implement/fix?

minimax() compared depth (int) against height (float from math.log), which never matches for non-power-of-2 list sizes and caused infinite recursion (RecursionError). Validate the power-of-2 constraint up front.

Additional comments?

None.

Fixes #14886

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Bug: Minimax crashes with RecursionError on non-power-of-2 input sizes

1 participant


Back | FazBrowse Home | New Git URL