advent_of_code_2021/day_15/vendor/blackscorp/astar/src/HeuristicInterface.php

7 lines
120 B
PHP
Raw Normal View History

<?php
namespace BlackScorp\Astar;
interface HeuristicInterface
{
public function compare(Node $node, Node $goal);
}