Engine
- class draughts.engine.AlphaBetaEngine(depth)[source]
Engine using alpha-beta puring algorithm. Alpha-beta puring is a minimax algorithm with optimization. Algorithm will not inspect nodes that are worse than already inspected nodes. Additionaly, this engine will inspect capture moves first. Usually, those moves are better than non-capture moves.