diff options
author | Wu, Ke <wuke@cs.umd.edu> | 2014-10-10 16:58:44 -0400 |
---|---|---|
committer | Wu, Ke <wuke@cs.umd.edu> | 2014-10-10 16:58:44 -0400 |
commit | 6cb042533b49765c06f4fa072947304433182add (patch) | |
tree | c901ef3aa9c564d8715dd22bae6dd04c80045a6a /utils/srl_sentence.h | |
parent | 4649248a3fa82c89c3d3782cecdcdcf5d487771b (diff) |
Run clang-format
Diffstat (limited to 'utils/srl_sentence.h')
-rw-r--r-- | utils/srl_sentence.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/srl_sentence.h b/utils/srl_sentence.h index 10f0414b..9d509600 100644 --- a/utils/srl_sentence.h +++ b/utils/srl_sentence.h @@ -8,7 +8,6 @@ #ifndef SRL_SENTENCE_H_ #define SRL_SENTENCE_H_ - #include <sstream> #include <vector> @@ -36,7 +35,7 @@ struct SArgument { char* m_pszRole; // argument rule, e.g., ARG0, ARGM-TMP int m_iBegin; - int m_iEnd; // the span of the argument, [m_iBegin, m_iEnd] + int m_iEnd; // the span of the argument, [m_iBegin, m_iEnd] float m_fProb; // the probability of this role, STreeItem* m_pTreeItem; }; @@ -66,7 +65,7 @@ struct SPredicate { char* m_pszLemma; // lemma of the predicate, for Chinese, it's always as same // as the predicate itself - int m_iPosition; // the position in sentence + int m_iPosition; // the position in sentence std::vector<SArgument*> m_vecArgt; // arguments associated to the predicate }; |