blob: 36a0e02035e97698369ec42b7509323cdcad4886 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 | #ifndef LICHEN_EXPRESSION_H
#define LICHEN_EXPRESSION_H
/****************************************************************
 * 
 * a grammar is built on both nonterminals and terminals. both are
 * represented by integers; nonterminals must be less than MAX_NONTERMINAL
 * and terminals must be greater. the intended way to do this is to define
 * an enum with all symbols, and have a MAX_NONTERMINAL symbol dividing the
 * (low) nonterminals from the (high) terminals.
 *
 ****************************************************************
 */
struct li_production_t {
  int *seq;
  size_t seq_len;
  struct li_production_t *next;  
};
struct li_production_t * li_production_alloc(size_t seq_len);
void li_production_free(struct li_production_t *prod);
struct li_production_rule_t {
  size_t num_productions;
  struct li_production_t *head;
};
struct li_production_rule_t * li_prod_rule_alloc();
void li_prod_rule_free(struct li_production_rule_t *rule);
int li_prod_rule_add(struct li_production_rule_t *rule, size_t seq_len, int *seq);
typedef struct li_grammar_t {
  struct li_production_rule_t *rules;
  size_t num_nonterminal;
} li_grammar_t;
li_rammar_t * li_grammar_alloc(size_t num_nonterminal);
void li_grammar_free(li_grammar_t *grammar);
int li_grammar_rule_add(li_grammar_t *grammar, int nonterminal, size_t seq_len, int *seq);
#endif
 |