Uses of Class
helix.graph.model.impl.RColorSet

Packages that use RColorSet
helix.graph.algo.c3part   
helix.graph.algo.c3part.aggregator   
helix.graph.algo.c3part.compressor   
helix.graph.algo.c3part.preprocessor   
helix.graph.model.impl   
 

Uses of RColorSet in helix.graph.algo.c3part
 

Methods in helix.graph.algo.c3part that return RColorSet
static RColorSet C3PartUtil.getPseudoColors(Vertex V, Vertex U)
          compute pseudo colors of edge (U, V) using the datagraph (i.e not relying on an actual edge).
static RColorSet C3PartUtil.getTrueColors(Vertex V, Vertex U)
          compute true colors of edge (U, V) using the datagraph (i.e not relying on an actual edge).
 

Uses of RColorSet in helix.graph.algo.c3part.aggregator
 

Constructors in helix.graph.algo.c3part.aggregator with parameters of type RColorSet
CCAggregator(Graph datagraph, C3PartOptions options, RColorSet multicolors)
          constructor
DenseCCAggregator(Graph datagraph, C3PartOptions options, RColorSet multicolors)
          constructor
 

Uses of RColorSet in helix.graph.algo.c3part.compressor
 

Methods in helix.graph.algo.c3part.compressor that return RColorSet
 RColorSet NoCompressor.getColors(Vertex V, Vertex U)
           
 RColorSet MultiInSetCompressor.getColors(Vertex V, Vertex U)
          override getColors get proper color between two vertices if there is a physical edge return this color else compute pseudocolors.
 RColorSet MultiGraphCompressor.getColors(Vertex v, Vertex u)
          get proper colors of edge (v, u).
 RColorSet AbstractMultiCompressor.getColors(Vertex V, Vertex U)
          Get color of edge (V,U) if it exists, else compute the colors it should have according to this compressor.
 

Uses of RColorSet in helix.graph.algo.c3part.preprocessor
 

Constructors in helix.graph.algo.c3part.preprocessor with parameters of type RColorSet
Chromatizer(RColorSet colors, int maxColor)
          default constructor
Chromatizer(RColorSet colors, int maxColor, List<Integer> delta)
          alternate constructor : use the delta values in user's delta list to specify which colors are required.
 

Uses of RColorSet in helix.graph.model.impl
 

Methods in helix.graph.model.impl that return RColorSet
static RColorSet RColorSet.getColors(Registry r)
          same as getColors(r, Registry.Colors)
static RColorSet RColorSet.getColors(Registry r, String key)
          Lookup the RColorSet associated to key in registry and create an empty RColorSet if it does not exist.
 

Methods in helix.graph.model.impl with parameters of type RColorSet
 void RColorSet.andColors(RColorSet cset)
          compute the intersection ('and') between this ColorSet and the ColorSet argument.
 boolean RColorSet.includeColors(RColorSet cset)
          tell if this ColorSet includes all colors in the ColorSet argument.
 boolean RColorSet.intersectColor(RColorSet cset)
          tell if this ColorSet intersects the ColorSet argument i.e.
 void RColorSet.orColors(RColorSet cset)
          compute the union ('or') between this ColorSet and the ColorSet argument.
 void RColorSet.setColors(RColorSet cset)
          set all colors in this ColorSet at same values as in argument same as this.clearColors(); this.orColors(cset);
 void RColorSet.xorColors(RColorSet cset)
          compute the 'xor' between this ColorSet and the ColorSet argument.
 

Constructors in helix.graph.model.impl with parameters of type RColorSet
RColorSet(RColorSet cset)
          constructor : make a RColorSet by copying another RColorSet