Comprehensive Heuristic algorithms Tools for Every Need

Get access to Heuristic algorithms solutions that address multiple requirements. One-stop resources for streamlined workflows.

Heuristic algorithms

  • Open-source framework enabling implementation and evaluation of multi-agent AI strategies in a classic Pacman game environment.
    0
    0
    What is MultiAgentPacman?
    MultiAgentPacman offers a Python-based game environment where users can implement, visualize, and benchmark multiple AI agents in the Pacman domain. It supports adversarial search algorithms like minimax, expectimax, alpha-beta pruning, as well as custom reinforcement learning or heuristic-based agents. The framework includes a simple GUI, command-line controls, and utilities to log game statistics and compare agent performance under competitive or cooperative scenarios.
  • BomberManAI is a Python-based AI agent that autonomously navigates and battles in Bomberman game environments using search algorithms.
    0
    0
    What is BomberManAI?
    BomberManAI is an AI agent designed to play the classic Bomberman game autonomously. Developed in Python, it interfaces with a game environment to perceive map states, available moves, and opponent positions in real time. The core algorithm combines A* pathfinding, breadth-first search for reachability analysis, and a heuristic evaluation function to determine optimal bomb placement and evasion strategies. The agent handles dynamic obstacles, power-ups, and multiple opponents on various map layouts. Its modular architecture enables developers to experiment with custom heuristics, reinforcement learning modules, or alternative decision-making strategies. Ideal for game AI researchers, students, and competitive bot developers, BomberManAI provides a flexible framework for testing and improving autonomous gaming agents.
  • Efficient Prioritized Heuristics MAPF (ePH-MAPF) quickly computes collision-free multi-agent paths in complex environments using incremental search and heuristics.
    0
    0
    What is ePH-MAPF?
    ePH-MAPF provides an efficient pipeline for computing collision-free paths for dozens to hundreds of agents on grid-based maps. It uses prioritized heuristics, incremental search techniques, and customizable cost metrics (Manhattan, Euclidean) to balance speed and solution quality. Users can select between different heuristic functions, integrate the library into Python-based robotics systems, and benchmark performance on standard MAPF scenarios. The codebase is modular and well-documented, enabling researchers and developers to extend it for dynamic obstacles or specialized environments.
  • An AI agent that plays Pentago Swap by evaluating board states and selecting optimal placements using Monte Carlo Tree Search.
    0
    0
    What is Pentago Swap AI Agent?
    Pentago Swap AI Agent implements an intelligent opponent for the Pentago Swap game by leveraging a Monte Carlo Tree Search (MCTS) algorithm to explore and evaluate potential game states. At each turn, the agent simulates numerous playouts, scoring resulting board positions to identify moves that maximize win probability. It supports customization of search parameters like simulation count, exploration constant, and playout policy, enabling users to fine-tune performance. The agent includes a command-line interface for head-to-head matches, self-play to generate training data, and a Python API for integration into larger game environments or tournaments. Built with modular code, it facilitates extension with alternative heuristics or neural network evaluators for advanced research and development.
Featured