mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-19 21:18:39 +00:00
expand issue
This commit is contained in:
parent
a18360b5ac
commit
6ed9992895
|
|
@ -34,6 +34,16 @@ namespace phpOMS\Stdlib\Graph;
|
|||
* * Find islands
|
||||
* * Find all unreachable nodes
|
||||
* * Check if strongly connected
|
||||
* * Find longest path between 2 nodes
|
||||
* * Find longest path
|
||||
* * Get the girth
|
||||
* * Get the circuit rank
|
||||
* * Get the node connectivity
|
||||
* * Get the edge connectivity
|
||||
* * Is the graph connected
|
||||
* * Get the unconnected nodes as their own graph
|
||||
* * Check if bipartite
|
||||
* * Check if triangle free
|
||||
*/
|
||||
class Graph
|
||||
{
|
||||
|
|
@ -655,16 +665,4 @@ class Graph
|
|||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Is the graph circle free?
|
||||
*
|
||||
* @return bool
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public function isCircleFree() : bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user