|
networks/graph/RealWeightedGraph.hGo to the documentation of this file.00001 //============================================================================ 00002 // Author : Alessandro Pinto <apinto@eecs.berkeley.edu> 00003 // University of California, Berkeley 00004 // 545 Cory Hall, Berkeley, CA 94720 00005 // Copyright : See COPYING file that comes with this distribution 00006 //============================================================================ 00007 00008 00009 #ifndef REALWEIGHTEDGRAPH_H_ 00010 #define REALWEIGHTEDGRAPH_H_ 00011 00012 #include <string> 00013 #include "label/Label.hpp" 00014 #include "core/CommunicationStructure.hpp" 00015 #include "core/Quantity.h" 00016 00017 namespace cosi { 00018 00019 namespace commstruct { 00020 00021 namespace graph { 00022 00023 typedef Label_1<RealQuantity> WeightLabel; 00024 00025 class RealWeightedGraph : public CommunicationStructure< WeightLabel > { 00026 public: 00027 RealWeightedGraph(); 00028 ~RealWeightedGraph(); 00029 }; 00030 00031 class U_RealWeightedGraph : public U_CommunicationStructure< WeightLabel > { 00032 public: 00033 U_RealWeightedGraph(); 00034 ~U_RealWeightedGraph(); 00035 }; 00036 00037 00038 } 00039 } 00040 } 00041 #endif /*REALWEIGHTEDGRAPH_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |