Generated by Cython 0.26
Yellow lines hint at Python interaction.
Click on a line that starts with a "+" to see the C code that Cython generated for it.
Raw output: constants.pxi
01: # The number of unsigned longs in the bitvector of a FatChartItem.
02: # The maximum sentence length will be: SLOTS * sizeof(unsigned long) * 8
03: DEF SLOTS = 2
04: # These values give a maximum length of 128 bits on 32 and 64 bit systems.
05: # IF UNAME_MACHINE == 'x86_64':
06: # DEF SLOTS = 2
07: # ELSE:
08: # DEF SLOTS = 4
09:
10: # context summary estimates
11: DEF SX = 1
12: DEF SXlrgaps = 2
13:
14: # Any logprob above this is considered as infinity and pruned by plcfrs
15: DEF MAX_LOGPROB = 300.0
16:
17: # The maximum length of the path to the root node and any terminal node.
18: # Prevents unary cycles from causing stack overflows in k-best extraction.
19: DEF MAX_DEPTH = 200