File:  [Research Unix] / researchv10no / cmd / dag / TrieFA.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 17:21:34 2018 UTC (8 years, 1 month ago) by root
Branches: belllabs, MAIN
CVS tags: researchv10, HEAD
researchv10 Norman

/* File - TrieFA.h
 *
 *    The data types for the generated trie-baseed finite automata.
 */

struct TrieState {				// An entry in the FA state table
	short			def;			// If this state is an accepting state then
									// this is the definition, otherwise it is -1.
	short			trans_base;		// The base index into the transition table.
	long			mask;			// The transition mask.
};

struct TrieTrans {				// An entry in the FA transition table.
	short			c;				// The transition character (lowercase).
	short			next_state;		// The next state.
};

extern TrieState	TrieStateTbl[];
extern TrieTrans	TrieTransTbl[];

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.