save kmax in HLLkTable
This commit is contained in:
parent
8995097a1d
commit
73e92f04df
1 changed files with 2 additions and 0 deletions
|
|
@ -12,6 +12,7 @@ static const size_t DEFAULT_KMAX = 1;
|
||||||
* maps lookahead strings to productions (HCFSequence).
|
* maps lookahead strings to productions (HCFSequence).
|
||||||
*/
|
*/
|
||||||
typedef struct HLLkTable_ {
|
typedef struct HLLkTable_ {
|
||||||
|
size_t kmax;
|
||||||
HHashTable *rows;
|
HHashTable *rows;
|
||||||
HCFChoice *start; // start symbol
|
HCFChoice *start; // start symbol
|
||||||
HArena *arena;
|
HArena *arena;
|
||||||
|
|
@ -188,6 +189,7 @@ static int fill_table_row(size_t kmax, HCFGrammar *g, HStringMap *row,
|
||||||
*/
|
*/
|
||||||
static int fill_table(size_t kmax, HCFGrammar *g, HLLkTable *table)
|
static int fill_table(size_t kmax, HCFGrammar *g, HLLkTable *table)
|
||||||
{
|
{
|
||||||
|
table->kmax = kmax;
|
||||||
table->start = g->start;
|
table->start = g->start;
|
||||||
|
|
||||||
// iterate over g->nts
|
// iterate over g->nts
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue