Python Forum
TypeError: max_value() missing 2 required positional arguments: 'alpha' and 'beta'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TypeError: max_value() missing 2 required positional arguments: 'alpha' and 'beta'
#1
def minimax(BTree):
    alpha = mini
    beta = maxi
    userValue = max_value(BTree,alpha,beta)
    return userValue
userValue = minimax(tree)
print("The Optimal value of the MiniMax Algorithm : "+ str(userValue))
print("\n The output Path is :")
print(path(tree,userValue))
out = alphabeta(tree)
print("The Optimal value of the Alpha beta pruning Algorithm : "+ str(out))
Reply
#2
The error in the title does not match the code.
please post full error tracebacks in error code tags.
Reply
#3
@Yoriz the error did solve thank you
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  alpha advantage api question jacksfrustration 1 445 Oct-09-2023, 03:39 PM
Last Post: Larz60+
  TypeError: a bytes-like object is required ZeroX 13 3,834 Jan-07-2023, 07:02 PM
Last Post: deanhystad
  Error TypeError: output_type_handler() takes 2 positional arguments but 6 were given paulo79 1 1,857 Oct-17-2022, 06:29 PM
Last Post: paulo79
  TypeError: a bytes-like object is required, not 'str' - Help Please. IanJ 3 4,670 Aug-29-2022, 05:53 PM
Last Post: deanhystad
  TypeError: not enough arguments for format string MaartenRo 6 2,859 Jan-09-2022, 06:46 PM
Last Post: ibreeden
  TypeError: missing a required argument: 'y' gible 0 2,843 Dec-15-2021, 02:21 AM
Last Post: gible
  TypeError: missing 3 required positional arguments: wardancer84 9 10,660 Aug-19-2021, 04:27 PM
Last Post: deanhystad
  TypeError: run_oracle_job() missing 1 required positional argument: 'connection_strin python_student 1 1,937 Aug-06-2021, 08:05 PM
Last Post: SheeppOSU
  python 3: TypeError: a bytes-like object is required, not 'str' wardancer84 3 6,372 Jul-09-2021, 05:55 PM
Last Post: deanhystad
  TypeError: sum() missing 1 required positional argument: 'num2' Insen 3 5,385 Jan-06-2021, 04:25 PM
Last Post: Insen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020