Files
Chamilo/vendor/graphp/algorithms/tests/MinimumCostFlow/SuccessiveShortestPathTest.php
2025-04-10 12:24:57 +02:00

13 lines
269 B
PHP

<?php
use Fhaculty\Graph\Graph;
use Graphp\Algorithms\MinimumCostFlow\SuccessiveShortestPath;
class SuccessiveShortestPathTest extends BaseMcfTest
{
protected function createAlgorithm(Graph $graph)
{
return new SuccessiveShortestPath($graph);
}
}