Package | Description |
---|---|
edu.ucla.sspace.graph.isomorphism | |
edu.ucla.sspace.util |
Modifier and Type | Class and Description |
---|---|
class |
IsomorphicGraphCounter<G extends Graph<? extends Edge>>
A special-purpose
Counter that counts graphs based on isomorphism, rather
than object equivalence (which may take into account vertex labeling, etc.). |
class |
TypedIsomorphicGraphCounter<T,G extends Multigraph<T,? extends TypedEdge<T>>>
A special-purpose
Counter that counts multigraphs based on
typed isomorphism, rather
than object equivalence (which may take into account vertex labeling, etc.). |
Modifier and Type | Method and Description |
---|---|
void |
IsomorphicGraphCounter.add(Counter<? extends G> c)
Counts the number of isomorphic graphs in
c and includes their
sum in this counter. |
void |
TypedIsomorphicGraphCounter.add(Counter<? extends G> c)
Counts the number of isomorphic graphs in
c and includes their
sum in this counter. |
Modifier and Type | Class and Description |
---|---|
class |
IndexedCounter<T>
A utility for counting unique instance of an object.
|
class |
ObjectCounter<T>
A utility for counting unique instance of an object.
|
class |
PairCounter<T>
A utility for counting unique instance of pairs of objects.
|
Modifier and Type | Method and Description |
---|---|
void |
PairCounter.add(Counter<? extends Pair<T>> counter)
Adds the counts from the provided
Counter to the current counts,
adding new elements as needed. |
void |
Counter.add(Counter<? extends T> counter)
Adds the counts from the provided
Counter to the current counts,
adding new elements as needed. |
void |
ObjectCounter.add(Counter<? extends T> counter)
Adds the counts from the provided
Counter to the current counts,
adding new elements as needed. |
void |
IndexedCounter.add(Counter<? extends T> counter)
Adds the counts from the provided
Counter to the current counts,
adding new elements as needed. |
Copyright © 2012. All Rights Reserved.