diff options
author | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2013-03-03 12:06:43 +0100 |
---|---|---|
committer | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2013-03-03 12:06:43 +0100 |
commit | f7f9048f8e4d34682f17bfd050d238005feb3ee3 (patch) | |
tree | fa20fa16b0f5a8009a9254622b65ebeaec049399 /python/src/sa/sym.pxi | |
parent | 9d306b30c9abba995ba35243e5cb461bb472a61f (diff) | |
parent | 12f2eab0e7dc7167af47cddf8ef88968656277da (diff) |
Merge branch 'master' of github.com:pks/cdec-dtrain
Diffstat (limited to 'python/src/sa/sym.pxi')
-rw-r--r-- | python/src/sa/sym.pxi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/src/sa/sym.pxi b/python/src/sa/sym.pxi index 81f19ef1..f253aec0 100644 --- a/python/src/sa/sym.pxi +++ b/python/src/sa/sym.pxi @@ -104,6 +104,9 @@ cdef int sym_setindex(int sym, int id): cdef int sym_fromstring(char* string, bint terminal): return ALPHABET.fromstring(string, terminal) +def isvar(sym): + return sym_isvar(sym) + def make_lattice(words): word_ids = (sym_fromstring(word, True) for word in words) return tuple(((word, None, 1), ) for word in word_ids) |