Exemplo n.º 1
0
Arquivo: main.c Projeto: rustydc/ngram
int main(int argc, char **argv) {
  char data[] = "We have been up all night, my friends and I, beneath mosque lamps whose brass cupolas are bright as our souls, because like them they were illuminated by the internal glow of electric hearts. And trampling underfoot our native sloth on opulent Persian carpets, we have been discussing right up to the limits of logic and scrawling the paper with demented writing. Our hearts were filled with an immense pride at feeling ourselves standing quite alone, like lighthouses or like the sentinels in an outpost, facing the army of enemy stars encamped in their celestial bivouacs. Alone with the engineers in the infernal stokeholes of great ships, alone with the black spirits which rage in the belly of rogue locomotives, alone with the drunkards beating their wings against the walls. Then we were suddenly distracted by the rumbling of huge double decker trams that went leaping by, streaked with light like the villages celebrating their festivals, which the Po in flood suddenly knocks down and uproots, and, in the rapids and eddies of a deluge, drags down to the sea. Then the silence increased. As we listened to the last faint prayer of the old canal and the crumbling of the bones of the moribund palaces with their green growth of beard, suddenly the hungry automobiles roared beneath our windows.";

  Ngram *n2 = malloc(sizeof(Ngram));
  ngram_init(n2, (unsigned char *) data, strlen(data), 2);
  Ngram *n3 = malloc(sizeof(Ngram));
  ngram_init(n3, (unsigned char *) data, strlen(data), 3);

  Plugin *plugins[] = {(Plugin *)n2, (Plugin *)n3, NULL};
  Range *range = malloc(sizeof(Range));
  range_init(range, (unsigned char *) data, strlen(data), plugins);
  
  range->plugin.set_width((Plugin *)range, strlen(data));
  print(n2);
  print(n3);
  return 0;
}
Exemplo n.º 2
0
static grn_obj *
bigramisad_init(grn_ctx *ctx, int nargs, grn_obj **args, grn_user_data *user_data)
{ return ngram_init(ctx, nargs, args, user_data, 2, 0, 0, 0, 1); }
Exemplo n.º 3
0
static grn_obj *
trigram_init(grn_ctx *ctx, int nargs, grn_obj **args, grn_user_data *user_data)
{ return ngram_init(ctx, nargs, args, user_data, 3, 1, 1, 1, 0); }
Exemplo n.º 4
0
static grn_obj *
bigramis_init(grn_ctx *ctx, int nargs, grn_obj **args, grn_user_data *user_data)
{ return ngram_init(ctx, args[0], user_data, 2, 1, 1, 0, 1); }
Exemplo n.º 5
0
static grn_obj *
unigram_init(grn_ctx *ctx, int nargs, grn_obj **args, grn_user_data *user_data)
{ return ngram_init(ctx, args[0], user_data, 1, 1, 1, 1, 0); }
Exemplo n.º 6
0
static grn_rc
trigram_init(grn_ctx *ctx, grn_obj *table, grn_proc_data *user_data)
{ return ngram_init(ctx, table, user_data, 3); }