Uses of Interface
org.apache.tinkerpop.gremlin.algorithm.generator.Distribution
Packages that use Distribution
-
Uses of Distribution in org.apache.tinkerpop.gremlin.algorithm.generator
Classes in org.apache.tinkerpop.gremlin.algorithm.generator that implement DistributionModifier and TypeClassDescriptionclassCopyDistribution returns the conditional value.classGenerates values according to a normal distribution with the configured standard deviation.classGenerates values according to a scale-free distribution with the configured gamma value.Fields in org.apache.tinkerpop.gremlin.algorithm.generator declared as DistributionModifier and TypeFieldDescriptionCommunityGeneratorTest.DifferentDistributionsTest.communityDistributionCommunityGeneratorTest.DifferentDistributionsTest.degreeDistributionDistributionGeneratorTest.DifferentDistributionsTest.inDistributionDistributionGeneratorTest.DifferentDistributionsTest.outDistributionMethods in org.apache.tinkerpop.gremlin.algorithm.generator that return DistributionModifier and TypeMethodDescriptionCopyDistribution.initialize(int invocations, int expectedTotal) Distribution.initialize(int invocations, int expectedTotal) Initializes the distribution such that expectedTotal is equal to the expected sum of generated values after the given number of invocatiosn.NormalDistribution.initialize(int invocations, int expectedTotal) PowerLawDistribution.initialize(int invocations, int expectedTotal) Methods in org.apache.tinkerpop.gremlin.algorithm.generator with parameters of type DistributionModifier and TypeMethodDescriptionCommunityGenerator.Builder.communityDistribution(Distribution community) Sets the distribution to be used to generate the sizes of communities.CommunityGenerator.Builder.degreeDistribution(Distribution degree) Sets the distribution to be used to generate the out-degrees of vertices.DistributionGenerator.Builder.inDistribution(Distribution distribution) Sets the distribution to be used to generate the out-degrees of vertices.DistributionGenerator.Builder.outDistribution(Distribution distribution) Sets the distribution to be used to generate the sizes of communities.