예제 #1
0
파일: defs.py 프로젝트: alexdrozdov/asrdbs
 def __init__(self, anchor=None, weight=None):
     RtDynamicRule.__init__(self, True, False)
     self.__anchor = RtMatchString(anchor)
     self.__weight = weight
예제 #2
0
파일: defs.py 프로젝트: alexdrozdov/asrdbs
 def __init__(self, anchor=None):
     RtDynamicRule.__init__(self, False, False)
     self.__anchor = RtMatchString(anchor)
예제 #3
0
파일: defs.py 프로젝트: alexdrozdov/asrdbs
 def __init__(self, anchor=None, get_param_fcn=None, param_name=None):
     assert get_param_fcn is not None
     RtDynamicRule.__init__(self, False, False)
     self.__anchor = RtMatchString(anchor)
     self.__get_param_fcn = get_param_fcn
     self.__param_name = param_name