[hfst] branch upstream updated (abe69df -> 0b8a798)

Tino Didriksen tinodidriksen-guest at moszumanska.debian.org
Fri Dec 19 18:11:18 UTC 2014


This is an automated email from the git hooks/post-receive script.

tinodidriksen-guest pushed a change to branch upstream
in repository hfst.

      from  abe69df   Imported Upstream version 3.8.1~r4088
       new  0b8a798   Imported Upstream version 3.8.2~r4145

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                          | 424 ++++++++++++++++
 ChangeLog.old                                      | 535 +++++++++++++++++++++
 NEWS                                               |  12 +
 check_installation/copy-tool-tests.sh              |   2 +
 configure.ac                                       |  16 +-
 libhfst/src/HfstTokenizer.cc                       | 130 ++++-
 libhfst/src/HfstTokenizer.h                        |   9 +
 libhfst/src/HfstTransducer.cc                      |  43 ++
 libhfst/src/HfstTransducer.h                       |   4 +
 libhfst/src/Makefile.am                            |   2 +-
 libhfst/src/implementations/ConvertOlTransducer.cc | 174 +++----
 libhfst/src/implementations/HfstTransitionGraph.h  | 149 ++++--
 .../implementations/optimized-lookup/convert.cc    |  58 +--
 .../src/implementations/optimized-lookup/convert.h | 246 ++++++----
 .../src/implementations/optimized-lookup/pmatch.cc | 268 ++++++++---
 .../src/implementations/optimized-lookup/pmatch.h  |  40 +-
 .../implementations/optimized-lookup/transducer.cc |   5 +
 .../implementations/optimized-lookup/transducer.h  |   5 +-
 libhfst/src/parsers/LexcCompiler.cc                | 158 ++++--
 libhfst/src/parsers/LexcCompiler.h                 |  12 +-
 libhfst/src/parsers/XreCompiler.cc                 |  41 +-
 libhfst/src/parsers/XreCompiler.h                  |  30 ++
 libhfst/src/parsers/lexc-lexer.ll                  |   3 -
 libhfst/src/parsers/lexc-parser.yy                 |  72 ++-
 libhfst/src/parsers/pmatch_lex.ll                  |  36 ++
 libhfst/src/parsers/pmatch_parse.yy                | 280 +++++++++--
 libhfst/src/parsers/pmatch_utils.cc                | 255 ++++++++--
 libhfst/src/parsers/pmatch_utils.h                 |   9 +-
 libhfst/src/parsers/xre_lex.ll                     |   2 +
 libhfst/src/parsers/xre_parse.yy                   |  19 +-
 libhfst/src/parsers/xre_utils.cc                   |  83 +++-
 libhfst/src/parsers/xre_utils.h                    |   5 +
 test/tools/Makefile.am                             |   8 +-
 test/tools/lexc-compiler-functionality.sh          |   4 +-
 test/tools/warn.one-sided-flags.lexc               |   7 +
 test/tools/warn.one-sided-flags.lexc.flag.result   | Bin 0 -> 461 bytes
 test/tools/warn.one-sided-flags.lexc.result        | Bin 0 -> 347 bytes
 .../xfail.sublexicon-defined-more-than-once.lexc   |  15 +
 tools/src/HfstStrings2FstTokenizer.cc              |  20 +-
 tools/src/hfst-compose.cc                          |  62 ++-
 tools/src/hfst-fst2strings.cc                      |   4 +-
 tools/src/hfst-lexc-compiler.cc                    |  26 +-
 tools/src/hfst-pmatch.cc                           |  17 +-
 tools/src/hfst-proc2.cc                            |   3 +-
 tools/src/hfst-summarize.cc                        |  61 ++-
 tools/src/parsers/XfstCompiler.cc                  | 192 ++++++--
 tools/src/parsers/XfstCompiler.h                   |   3 +-
 tools/src/parsers/hfst-xfst.cc                     |   1 +
 tools/src/parsers/test/Makefile.am                 |   8 +-
 tools/src/parsers/test/compile_replace_1.output    |   8 +
 tools/src/parsers/test/compile_replace_1.xfst      |  12 +
 tools/src/parsers/test/compile_replace_2.output    |   8 +
 tools/src/parsers/test/compile_replace_2.xfst      |  10 +
 tools/src/parsers/test/compile_replace_3.output    |  17 +
 tools/src/parsers/test/compile_replace_3.xfst      |  21 +
 tools/src/parsers/test/merge.att                   |  39 ++
 tools/src/parsers/test/merge.xfst                  |  17 +
 tools/src/parsers/test/merge_weighted.att          |  39 ++
 tools/src/parsers/test/merge_weighted.xfst         |  18 +
 tools/src/parsers/test/one_transition_regex.att    |  10 +
 tools/src/parsers/test/one_transition_regex.xfst   |  11 +
 tools/src/parsers/test/test.sh                     |  30 +-
 62 files changed, 3195 insertions(+), 603 deletions(-)
 create mode 100644 test/tools/warn.one-sided-flags.lexc
 create mode 100644 test/tools/warn.one-sided-flags.lexc.flag.result
 create mode 100644 test/tools/warn.one-sided-flags.lexc.result
 create mode 100644 test/tools/xfail.sublexicon-defined-more-than-once.lexc
 create mode 100644 tools/src/parsers/test/compile_replace_1.output
 create mode 100644 tools/src/parsers/test/compile_replace_1.xfst
 create mode 100644 tools/src/parsers/test/compile_replace_2.output
 create mode 100644 tools/src/parsers/test/compile_replace_2.xfst
 create mode 100644 tools/src/parsers/test/compile_replace_3.output
 create mode 100644 tools/src/parsers/test/compile_replace_3.xfst
 create mode 100644 tools/src/parsers/test/merge.att
 create mode 100644 tools/src/parsers/test/merge.xfst
 create mode 100644 tools/src/parsers/test/merge_weighted.att
 create mode 100644 tools/src/parsers/test/merge_weighted.xfst
 create mode 100644 tools/src/parsers/test/one_transition_regex.att
 create mode 100644 tools/src/parsers/test/one_transition_regex.xfst

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/hfst.git



More information about the debian-science-commits mailing list