Skip to content

Commit

Permalink
Added transCube to be used during Floyd Warshall Algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdafunction committed Oct 20, 2010
1 parent 5ce30a8 commit 7d3eed6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions GNFA.h
Expand Up @@ -26,6 +26,7 @@ class GNFA {
vector <transVector> transFunction; // this is a vector of vectors used to store the transition function.
vector<bool> acceptStates;//holds in pointers 0 to n-1 states 0 to n-


//Constructor
GNFA(int );

Expand Down Expand Up @@ -67,6 +68,8 @@ class GNFA {
private:
bool deleteTransition(int i, int j);
bool setTransitionPtr(int , int , regexNode* );
typedef vector <transVector> transMatrix;
vector <transMatrix> transCube; // this is a vector of vectors used to store the transition function.

};

Expand Down

0 comments on commit 7d3eed6

Please sign in to comment.