Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for stableIncidentEdgeOrder_incidentEdges_withSelfLoop_returnsInEdgeInsertionOrder (0.34 seconds)

  1. guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java

                EndpointPair.unordered(1, 2),
                EndpointPair.unordered(1, 4),
                EndpointPair.unordered(1, 3))
            .inOrder();
      }
    
      @Test
      public void stableIncidentEdgeOrder_incidentEdges_withSelfLoop_returnsInEdgeInsertionOrder() {
        assume().that(graph.incidentEdgeOrder().type()).isEqualTo(ElementOrder.Type.STABLE);
        assume().that(graph.allowsSelfLoops()).isTrue();
    
        putEdge(2, 1);
        putEdge(1, 1);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Oct 06 20:14:55 GMT 2025
    - 13.2K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedGraphTest.java

                EndpointPair.ordered(5, 1),
                EndpointPair.ordered(1, 2),
                EndpointPair.ordered(3, 1))
            .inOrder();
      }
    
      @Test
      public void stableIncidentEdgeOrder_incidentEdges_withSelfLoop_returnsInEdgeInsertionOrder() {
        assume().that(graph.incidentEdgeOrder().type()).isEqualTo(ElementOrder.Type.STABLE);
        assume().that(graph.allowsSelfLoops()).isTrue();
    
        putEdge(2, 1);
        putEdge(1, 1);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Oct 06 20:14:55 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java

                EndpointPair.unordered(1, 2),
                EndpointPair.unordered(1, 4),
                EndpointPair.unordered(1, 3))
            .inOrder();
      }
    
      @Test
      public void stableIncidentEdgeOrder_incidentEdges_withSelfLoop_returnsInEdgeInsertionOrder() {
        assume().that(graph.incidentEdgeOrder().type()).isEqualTo(ElementOrder.Type.STABLE);
        assume().that(graph.allowsSelfLoops()).isTrue();
    
        putEdge(2, 1);
        putEdge(1, 1);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Oct 06 20:14:55 GMT 2025
    - 13.2K bytes
    - Click Count (0)
Back to Top