Graybat  1.1
Graph Approach for Highly Generic Communication Schemes Based on Adaptive Topologies
Communication Pattern

A communication pattern is a class functor which generates a graph. They are used to define the communication graph of a cage. GrayBat provides a handful of predefined pattern:

Own communication pattern can be build from the following pattern skeleton:

namespace graybat {
namespace pattern {
struct PatternSkeleton {
// Functor which returns a desired graph
GraphDescription operator()(){
};
} /* pattern */
} /* graybat */

Further Links