Skip to content

Commit

Permalink
Implement joining for Z_SIOT
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Oct 27, 2024
1 parent d97c094 commit 2901ad8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/kiwi/Types.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/**
* @file Types.h
* @author bab2min ([email protected])
* @brief Kiwi C++ API에 쓰이는 주요 타입들을 모아놓은 헤더 파일
Expand Down
1 change: 1 addition & 0 deletions src/Joiner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ namespace kiwi
if (l == POSTag::sso || l == POSTag::ssc) return false;
if (r == POSTag::sso) return true;
if ((isJClass(l) || isEClass(l)) && r == POSTag::ss) return true;
if (l == POSTag::z_siot && isNNClass(r)) return false;

if (r == POSTag::vx && rform.size() == 1 && (rform[0] == u'' || rform[0] == u'')) return false;

Expand Down

0 comments on commit 2901ad8

Please sign in to comment.