Ignore:
Timestamp:
1998-11-25T20:55:52+13:00 (26 years ago)
Author:
rjmcnab
Message:

Modified mg to that you can specify the stemmer you want
to use via a command line option. You specify it to
mg_passes during the build process. The number of the
stemmer that you used is stored within the inverted
dictionary header and the stemmed dictionary header so
the correct stemmer is used in later stages of building
and querying.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/packages/mg-1.3d/src/text/mgdictlist.c

    r13 r34  
    3737/*
    3838   $Log$
     39   Revision 1.2  1998/11/25 07:55:49  rjmcnab
     40
     41   Modified mg to that you can specify the stemmer you want
     42   to use via a command line option. You specify it to
     43   mg_passes during the build process. The number of the
     44   stemmer that you used is stored within the inverted
     45   dictionary header and the stemmed dictionary header so
     46   the correct stemmer is used in later stages of building
     47   and querying.
     48
    3949   Revision 1.1  1998/11/17 09:35:24  rjmcnab
    4050   *** empty log message ***
     
    8292  NTOHUL(idh.static_num_of_docs);
    8393  NTOHUL(idh.num_of_words);
     94  NTOHUL(idh.stemmer_num);
    8495  NTOHUL(idh.stem_method);
    8596
     
    345356
    346357
    347 void
    348 main (int argc, char **argv)
     358int main (int argc, char **argv)
    349359{
    350360  FILE *fp;
     
    389399    }
    390400  fclose (fp);
    391   exit (0);
    392 }
     401  return 0;
     402}
Note: See TracChangeset for help on using the changeset viewer.