add another bipartite test
Some checks failed
CI / general_module_workflow_php (push) Has been cancelled

This commit is contained in:
Dennis Eichhorn 2024-05-19 03:53:37 +02:00
parent 3511690182
commit 2dd35b4ba0

View File

@ -891,6 +891,9 @@ final class GraphTest extends \PHPUnit\Framework\TestCase
$node4->setNodeRelative($node5);
self::assertTrue($this->graph->isBipartite());
$node0->setNodeRelative($node1);
self::assertFalse($this->graph->isBipartite());
}
/**