예제 #1
0
 public bool IsPercolated()
 {
     //If the cap and base nodes are connected in any way then the system percolates
     return(_graphManager.AreNodesConnected(_capNodeIndex, _baseNodeIndex));
 }
 public void ThenNodeShouldBeConnectedToNode(int p0, int p1)
 {
     _gm.AreNodesConnected(p0, p1).Should().BeTrue();
 }