Changeset 198


Ignore:
Timestamp:
02/11/10 15:57:46 (14 years ago)
Author:
bernard
Message:

updating comments in Order.hpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yao/src/YAOObjects/Order.hpp

    r194 r198  
    241241   typedef vector<cfcStruct> cfcStructTableType; 
    242242         
    243    // Array of data type that embed all the component informations of a graph (one entry by dimension i, j and k, used for storing the inner component informations). 
    244  
     243   // Vector of component structures that embed informations on the 3D main graph 
    245244   vector<cfcStruct> outerComp; 
    246     
     245 
     246   // Array of vectors of component structures that embed informations on the 2D graphs 
    247247   cfcStructTableType **middleComp; 
    248248 
     249   // Array of vectors of component structures that embed informations on the 1D graphs 
    249250   cfcStructTableType ****innerComp;  
    250251 
     
    336337        * This function create a graph then populate its properties accordignly to the boost API. 
    337338        * @param currentGraph a reference on the graph that should be created. 
     339        * @param valCi a vector of integer that register the connection values for the i dimension. 
     340        * @param valCj a vector of integer that register the connection values for the j dimension. 
     341        * @param valCk a vector of integer that register the connection values for the k dimension. 
     342        * @param modulList a vector of strings that regster the modul names. 
     343        * @param edgeArray a vector of edges that register the source modul and the target modul of each edge (connection).  
    338344        */ 
    339345        void generateGraph(myGraphType& currentGraph, const vector<int>& valCi, const vector<int>& valCj, const vector<int>& valCk, const vector<string>& modulList, const vector<edge>& edgeArray); 
Note: See TracChangeset for help on using the changeset viewer.