From ff986bb3131a62028444691d191838479be8e9c0 Mon Sep 17 00:00:00 2001 From: David de Hilster Date: Mon, 29 Jul 2024 16:29:52 -0400 Subject: [PATCH] NLP-ENGINE-424 Clearing flags in tree after tokenizer Signed-off-by: David de Hilster --- lite/dicttok.cpp | 1 + nlp/main.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lite/dicttok.cpp b/lite/dicttok.cpp index a20c229..d041939 100644 --- a/lite/dicttok.cpp +++ b/lite/dicttok.cpp @@ -537,6 +537,7 @@ if (parse_->getEana()->getFlogfiles()) // FIX // 02/01/00 AM. { //*gout << "[Tokenize: Dumping parse tree.]" << std::endl; tree_->Traverse(root_, *gout); + Pn::TraverseSetFlags(root_,false,false); } return true; diff --git a/nlp/main.cpp b/nlp/main.cpp index a1d571f..31d1427 100644 --- a/nlp/main.cpp +++ b/nlp/main.cpp @@ -15,7 +15,7 @@ All rights reserved. #include "lite/nlp_engine.h" #include "version.h" -#define NLP_ENGINE_VERSION "2.12.1" +#define NLP_ENGINE_VERSION "2.12.2" bool cmdReadArgs(int,_TCHAR*argv[],_TCHAR*&,_TCHAR*&,_TCHAR*&,_TCHAR*&,bool&,bool&,bool&); void cmdHelpargs(_TCHAR*);