예제 #1
0
 def min_null_count(self):
     """
      The minimum number of null links that a parse might have. A call to
      sentence_parse will find all linkages having the minimum number of
      null links within the range specified by this parameter.
     """
     return clg.parse_options_get_min_null_count(self._obj)
예제 #2
0
 def min_null_count(self):
     """
      The minimum number of null links that a parse might have. A call to
      sentence_parse will find all linkages having the minimum number of
      null links within the range specified by this parameter.
     """
     return clg.parse_options_get_min_null_count(self._obj)
예제 #3
0
def parse_options_get_min_null_count(*args) -> "int" :
  return _clinkgrammar.parse_options_get_min_null_count(*args)
예제 #4
0
def parse_options_get_min_null_count(*args):
  return _clinkgrammar.parse_options_get_min_null_count(*args)
예제 #5
0
 def fget(self):
     return clg.parse_options_get_min_null_count(self._po)
예제 #6
0
 def fget(self):
     return clg.parse_options_get_min_null_count(self._po)
예제 #7
0
def parse_options_get_min_null_count(opts: 'Parse_Options') -> "int":
    return _clinkgrammar.parse_options_get_min_null_count(opts)
예제 #8
0
 def test_setting_min_null_count(self):
     po = ParseOptions()
     po.min_null_count = 3
     self.assertEqual(clg.parse_options_get_min_null_count(po._po), 3)
예제 #9
0
 def test_setting_min_null_count(self):
     po = ParseOptions()
     po.min_null_count = 3
     self.assertEqual(clg.parse_options_get_min_null_count(po._po), 3)