Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for neighbors (0.2 sec)

  1. android/guava/src/com/google/common/graph/AbstractBaseGraph.java

        if (isDirected()) {
          return IntMath.saturatedAdd(predecessors(node).size(), successors(node).size());
        } else {
          Set<N> neighbors = adjacentNodes(node);
          int selfLoopCount = (allowsSelfLoops() && neighbors.contains(node)) ? 1 : 0;
          return IntMath.saturatedAdd(neighbors.size(), selfLoopCount);
        }
      }
    
      @Override
      public int inDegree(N node) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/ToDoubleRounder.java

              }
              // halfway between the representable values; do the half-whatever logic
              switch (mode) {
                case HALF_EVEN:
                  // roundFloorAsDouble and roundCeilingAsDouble are neighbors, so precisely
                  // one of them should have an even long representation
                  return ((Double.doubleToRawLongBits(roundFloorAsDouble) & 1L) == 0)
                      ? roundFloorAsDouble
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/EndpointPairIterator.java

                return EndpointPair.unordered(requireNonNull(node), otherNode);
              }
            }
            // Add to visited set *after* processing neighbors so we still include self-loops.
            visitedNodes.add(node);
            if (!advance()) {
              visitedNodes = null;
              return endOfData();
            }
          }
        }
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Jul 09 17:31:04 GMT 2021
    - 5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    shoulders, that all the jurors were writing down `stupid things!'
    on their slates, and she could even make out that one of them
    didn't know how to spell `stupid,' and that he had to ask his
    neighbour to tell him.  `A nice muddle their slates'll be in
    before the trial's over!' thought Alice.
    
      One of the jurors had a pencil that squeaked.  This of course,
    Alice could not stand, and she went round the court and got
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    shoulders, that all the jurors were writing down `stupid things!'
    on their slates, and she could even make out that one of them
    didn't know how to spell `stupid,' and that he had to ask his
    neighbour to tell him.  `A nice muddle their slates'll be in
    before the trial's over!' thought Alice.
    
      One of the jurors had a pencil that squeaked.  This of course,
    Alice could not stand, and she went round the court and got
    Plain Text
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  6. RELEASE.md

            `tf.contrib.saved_model.save_keras_model`.
        *   `LinearOperator.matmul` now returns a new `LinearOperator`.
    *   New ops and improved op functionality
        *   Add a Nearest Neighbor Resize op.
        *   Add an `ignore_unknown` argument to `parse_values` which suppresses
            ValueError for unknown hyperparameter types. Such * Add
            `tf.linalg.matvec` convenience function.
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
Back to top