it.unimi.dsi.Util.identity()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(7.1k)|赞(0)|评价(0)|浏览(212)

本文整理了Java中it.unimi.dsi.Util.identity()方法的一些代码示例,展示了Util.identity()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.identity()方法的具体详情如下:
包路径:it.unimi.dsi.Util
类名称:Util
方法名:identity

Util.identity介绍

[英]Stores the identity permutation in a new array of given length.
[中]将身份置换存储在给定长度的新数组中。

代码示例

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Stores the identity permutation in a new array of given length.
  2. *
  3. * @param n the size of the array.
  4. * @return a new array of length <code>n</code>, filled with the identity permutation.
  5. */
  6. public static int[] identity(int n) {
  7. return identity(new int[n]);
  8. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Stores the identity permutation in a new big array of given length.
  2. *
  3. * @param n the size of the array.
  4. * @return a new array of length <code>n</code>, filled with the identity permutation.
  5. */
  6. public static long[][] identity(long n) {
  7. return identity(LongBigArrays.newBigArray(n));
  8. }
  9. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /** Returns a random permutation for a given graph.
  2. *
  3. * @param g an immutable graph.
  4. * @param seed for {@link XoRoShiRo128PlusRandom}.
  5. * @return a random permutation for the given graph
  6. */
  7. public static int[] randomPermutation(final ImmutableGraph g, final long seed) {
  8. return IntArrays.shuffle(Util.identity(g.numNodes()), new XoRoShiRo128PlusRandom(seed));
  9. }

代码示例来源:origin: it.unimi.dsi/sux4j

  1. /** Solves the system using lazy Gaussian elimination.
  2. *
  3. * <p><strong>Warning</strong>: this method is very inefficient, as it
  4. * scans linearly the equations, builds from scratch the {@code var2Eq}
  5. * parameter of {@link #lazyGaussianElimination(Modulo3System, int[][], int[], int[], long[])}
  6. * and finally calls it. It should be used mainly to write unit tests.
  7. *
  8. * @param solution an array where the solution will be written.
  9. * @return true if the system is solvable.
  10. */
  11. public boolean lazyGaussianElimination(final long[] solution) {
  12. final int[][] var2Eq = new int[numVars][];
  13. final int[] d = new int[numVars];
  14. for(final Modulo3Equation equation: equations)
  15. for(int v = (int) equation.list.size64(); v-- != 0;)
  16. if (equation.list.getLong(v) != 0) d[v]++;
  17. for(int v = numVars; v-- != 0;) var2Eq[v] = new int[d[v]];
  18. Arrays.fill(d, 0);
  19. final long[] c = new long[equations.size()];
  20. for(int e = 0; e < equations.size(); e++) {
  21. c[e] = equations.get(e).c;
  22. final LongBigList list = equations.get(e).list;
  23. for(int v = (int) list.size64(); v-- != 0;)
  24. if (list.getLong(v) != 0) var2Eq[v][d[v]++] = e;
  25. }
  26. return lazyGaussianElimination(this, var2Eq, c, Util.identity(numVars), solution);
  27. }

代码示例来源:origin: it.unimi.dsi/sux4j

  1. /** Solves the system using lazy Gaussian elimination.
  2. *
  3. * <p><strong>Warning</strong>: this method is very inefficient, as it
  4. * scans linearly the equations, builds from scratch the {@code var2Eq}
  5. * parameter of {@link #lazyGaussianElimination(Modulo2System, int[][], long[], int[], long[])},
  6. * and finally calls it. It should be used mainly to write unit tests.
  7. *
  8. * @param solution an array where the solution will be written.
  9. * @return true if the system is solvable.
  10. */
  11. public boolean lazyGaussianElimination(final long[] solution) {
  12. final int[][] var2Eq = new int[numVars][];
  13. final int[] d = new int[numVars];
  14. for(final Modulo2Equation equation: equations)
  15. for(int v = (int)equation.bitVector.length(); v-- != 0;)
  16. if (equation.bitVector.getBoolean(v)) d[v]++;
  17. for(int v = numVars; v-- != 0;) var2Eq[v] = new int[d[v]];
  18. Arrays.fill(d, 0);
  19. final long[] c = new long[equations.size()];
  20. for(int e = 0; e < equations.size(); e++) {
  21. c[e] = equations.get(e).c;
  22. final LongArrayBitVector bitVector = equations.get(e).bitVector;
  23. for(int v = (int)bitVector.length(); v-- != 0;)
  24. if (bitVector.getBoolean(v)) var2Eq[v][d[v]++] = e;
  25. }
  26. return lazyGaussianElimination(this, var2Eq, c, Util.identity(numVars), solution);
  27. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /** Renumbers by decreasing size the components of this set.
  2. *
  3. * <p>After a call to this method, both the internal status of this class and the argument
  4. * array are permuted so that the sizes of strongly connected components are decreasing
  5. * in the component index.
  6. *
  7. * @param size the components sizes, as returned by {@link #computeSizes()}.
  8. */
  9. public void sortBySize(final int[] size) {
  10. final int[] perm = Util.identity(size.length);
  11. IntArrays.parallelRadixSortIndirect(perm, size, false);
  12. IntArrays.reverse(perm);
  13. final int[] copy = size.clone();
  14. for (int i = size.length; i-- != 0;) size[i] = copy[perm[i]];
  15. Util.invertPermutationInPlace(perm);
  16. for(int i = component.length; i-- != 0;) component[i] = perm[component[i]];
  17. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /**
  2. * Renumbers by decreasing size the components of this set.
  3. *
  4. * <p>After a call to this method, both the internal status of this class and the argument array
  5. * are permuted so that the sizes of connected components are decreasing in the component index.
  6. *
  7. * @param size the components sizes, as returned by {@link #computeSizes()}.
  8. */
  9. public void sortBySize(final int[] size) {
  10. final int[] perm = Util.identity(size.length);
  11. IntArrays.parallelRadixSortIndirect(perm, size, false);
  12. IntArrays.reverse(perm);
  13. final int[] copy = size.clone();
  14. for (int i = size.length; i-- != 0;)
  15. size[i] = copy[perm[i]];
  16. Util.invertPermutationInPlace(perm);
  17. for (int i = component.length; i-- != 0;)
  18. component[i] = perm[component[i]];
  19. }

代码示例来源:origin: it.unimi.dsi/sux4j

  1. if (! Modulo2System.lazyGaussianElimination(vertex2Edge, c, Util.identity(numVertices), solution)) {
  2. unsolvable++;
  3. if (LOGGER.isDebugEnabled()) LOGGER.debug("System is unsolvable");

代码示例来源:origin: it.unimi.di/mg4j

  1. /** Creates an object ready for solving queries.
  2. *
  3. * @param parser the parser to be used when solving queries.
  4. * @param indexMap the map from index alias to indices.
  5. * @param graph the graph whence we are going to extract subgraphs.
  6. * @param grapht the transpose graph, only needed if <code>maxIn</code> or <code>maxOut</code> are positive and finite.
  7. * @param maxIn how many nodes should be taken (at most) from the in-neighborhood.
  8. * @param maxOut how many nodes should be taken (at most) from the out-neighborhood.
  9. * @param random the random number generator to be used for selecting neighbors.
  10. */
  11. public GraphFromQuery( final SimpleParser parser, final Object2ReferenceLinkedOpenHashMap<String,Index> indexMap,
  12. final ImmutableGraph graph, final ImmutableGraph grapht,
  13. final int maxIn, final int maxOut, final Random random ) {
  14. this.parser = parser;
  15. this.graph = graph;
  16. this.grapht = grapht;
  17. this.maxIn = maxIn;
  18. this.maxOut = maxOut;
  19. int n = graph.numNodes();
  20. if ( maxIn > 0 && maxIn < Integer.MAX_VALUE || maxOut > 0 && maxOut < Integer.MAX_VALUE ) {
  21. nodePermutation = Util.identity( n );
  22. IntArrays.shuffle( nodePermutation, random );
  23. } else nodePermutation = null;
  24. documentIteratorBuilderVisitor = new DocumentIteratorBuilderVisitor( indexMap, indexMap.get( parser.defaultIndex ), Integer.MAX_VALUE );
  25. }

代码示例来源:origin: it.unimi.dsi/sux4j

  1. if (! Modulo2System.lazyGaussianElimination(vertex2Edge, c, Util.identity(numVertices), solution)) {
  2. unsolvable++;
  3. if (LOGGER.isDebugEnabled()) LOGGER.debug("System is unsolvable");

代码示例来源:origin: it.unimi.dsi/sux4j

  1. if (!Modulo2System.lazyGaussianElimination(vertex2Edge, c.clone(), Util.identity(maxNumVar), solution)) {
  2. unsolvable++;
  3. if (LOGGER.isDebugEnabled()) LOGGER.debug("System is unsolvable");

代码示例来源:origin: it.unimi.dsi/sux4j

  1. if (! Modulo2System.lazyGaussianElimination(vertex2Edge, c, Util.identity(numVertices), solution)) {
  2. unsolvable++;
  3. if (LOGGER.isDebugEnabled()) LOGGER.debug("System is unsolvable");

代码示例来源:origin: it.unimi.dsi/sux4j

  1. final int[] t = Util.identity(numVars);
  2. final int[] u = new int[t.length];
  3. final int[] count = new int[numEquations + 1]; // CountSort

代码示例来源:origin: it.unimi.dsi/sux4j

  1. final int[] perm = Util.identity(bucket.length);
  2. IntArrays.quickSort(perm, (a0, a1) -> Integer.compare(bucket[a1].size(), bucket[a0].size()));

相关文章