kr.angelov
|
cbe17732a6
|
use pgf_linearize instead of pgf_lzr_linearize_simple in pgf-translate.c
|
2014-03-04 10:30:23 +00:00 |
|
kr.angelov
|
2e1dd543e9
|
memory leak in parseval.c
|
2014-03-04 10:29:18 +00:00 |
|
kr.angelov
|
c197de7fbd
|
rename pgf_lzr_linearize_table to pgf_lzr_get_table
|
2014-03-04 10:13:23 +00:00 |
|
kr.angelov
|
994d936ce9
|
instructions for compiling the C runtime on Windows
|
2014-02-27 20:04:30 +00:00 |
|
kr.angelov
|
2eaf51f15a
|
changes in Makefile.am to make it easier to compile the C runtime on Windows
|
2014-02-27 19:37:10 +00:00 |
|
kr.angelov
|
2238d1e462
|
include malloc.h in a few places to avoid warnings on Windows
|
2014-02-27 19:34:14 +00:00 |
|
kr.angelov
|
f30c60c3d7
|
GuVariant is now plain uintptr_t instead of a structure to make it easier to write Haskell bindings
|
2014-02-09 19:07:15 +00:00 |
|
kr.angelov
|
f23bcb8a47
|
bugfix in the recognizer for literals in the C runtime
|
2014-02-05 20:13:52 +00:00 |
|
kr.angelov
|
a01e248ae6
|
make sure that pgf_concrete_load has no effect on grammars that are completely loaded
|
2013-12-17 13:57:16 +00:00 |
|
kr.angelov
|
0ece8f19ab
|
loading and unloading of languages in the C runtime and in the Python bindings
|
2013-12-10 15:00:52 +00:00 |
|
kr.angelov
|
b0a74ddc59
|
added API in the C runtime and the Java binding for checking whether a given function is linearizable in a given language. This is used in the Android UI for better vizualizations
|
2013-11-27 12:35:11 +00:00 |
|
kr.angelov
|
8bcc70eac8
|
the GF syntax for identifiers is exteded with quoted forms, i.e. you could write for instance 'ab.c' and then everything between the quites is identifier. This includes Unicode characters and non-ASCII symbols. This is useful for automatically generated GF grammars.
|
2013-11-22 13:30:18 +00:00 |
|
kr.angelov
|
1d2786f7da
|
bugfix in the debug mode for the parser
|
2013-11-22 12:26:49 +00:00 |
|
kr.angelov
|
aad6a1c4bb
|
bugfix in the C runtime
|
2013-11-21 14:31:28 +00:00 |
|
kr.angelov
|
9a2725279e
|
fix in the Python binding
|
2013-11-20 09:54:37 +00:00 |
|
kr.angelov
|
5b83da5583
|
bugfix in the robust parser
|
2013-11-18 09:05:27 +00:00 |
|
kr.angelov
|
edb4f7320d
|
add gu_buf_insert in libgu
|
2013-11-18 09:05:09 +00:00 |
|
kr.angelov
|
a6d60f9c8d
|
fixes in the C runtime to avoid warnings when compiling on MacOS
|
2013-11-15 10:03:22 +00:00 |
|
kr.angelov
|
d997df2864
|
pgf_read should open the grammar file in binary mode to prevent the Windows runtime from messing up the content.
|
2013-11-15 09:04:00 +00:00 |
|
kr.angelov
|
b3149b7897
|
pgf_reader_done should do nothing if the reading has failed
|
2013-11-15 08:59:18 +00:00 |
|
kr.angelov
|
126d5e0278
|
bugfix in the C runtime which had made the parser up to 200 times slower for some sentences
|
2013-11-13 15:15:28 +00:00 |
|
kr.angelov
|
0095119ec0
|
added Predef.SOFT_BIND. This special token allows zero or more spaces between ordinary tokens. It is also used in the English RGL to attach the commas to the previous word.
|
2013-11-12 09:54:57 +00:00 |
|
kr.angelov
|
af4a1f628d
|
factor of 3 speedup for the translation without slowing down the grammar loading. The parser still seems to be 8 times slower than before I introduced the BIND. At least the Android UI now feels a lot more comfortable
|
2013-11-07 11:14:32 +00:00 |
|
kr.angelov
|
3f5ae22a0c
|
bugfix in the binary search implementation in libgu
|
2013-11-07 11:13:47 +00:00 |
|
kr.angelov
|
7160a06a30
|
remove redundant type signature in gu/seq.h
|
2013-11-07 09:47:07 +00:00 |
|
kr.angelov
|
71744f7642
|
fix for the memory allocation in the jitter which should work for Windows.
|
2013-11-07 08:47:35 +00:00 |
|
kr.angelov
|
f9d044d294
|
fix in the parsing with pre
|
2013-11-06 16:25:25 +00:00 |
|
kr.angelov
|
2483dc7728
|
the content of ParseEngAbs3.probs is now merged with ParseEngAbs.probs. The later is now retrained. Once the grammar is compiled with the .probs file now it doesn't need anything more to do robust parsing. The robustness itself is controlled by the flags 'heuristic_search_factor', 'meta_prob' and 'meta_token_prob' in ParseEngAbs.gf
|
2013-11-06 10:21:46 +00:00 |
|
kr.angelov
|
84ef5fa5fa
|
when printing floating literals use %lg instead of %lf for better output
|
2013-11-06 09:46:29 +00:00 |
|
kr.angelov
|
6e1451e142
|
fix the debug mode of the JIT compiler after the refactoring in libgu
|
2013-11-04 19:33:29 +00:00 |
|
kr.angelov
|
546c7ac859
|
A simple type checker in the C runtime. Dependent types are not supported yet but HOAS is implemented. The API is accessible from Python as well
|
2013-11-04 17:10:46 +00:00 |
|
kr.angelov
|
585a192d0b
|
bug fix in the linearizer
|
2013-11-04 12:40:53 +00:00 |
|
kr.angelov
|
a7d245fb25
|
linearization for HOAS trees. It should word but we need a type checker in order to test it properly
|
2013-11-02 12:34:00 +00:00 |
|
kr.angelov
|
4e7781b606
|
remove the include of lexer.h from pgf-parse
|
2013-11-02 11:28:55 +00:00 |
|
kr.angelov
|
523259b06d
|
fix the parseval metric after the redesign in the C runtime
|
2013-11-01 17:36:22 +00:00 |
|
kr.angelov
|
fda1416c4d
|
bugfix in the linearizer
|
2013-11-01 17:26:35 +00:00 |
|
kr.angelov
|
8073f9abf5
|
make gu_exn_is_raised non inlined. this is useful to make it callable from Haskell
|
2013-11-01 16:38:16 +00:00 |
|
kr.angelov
|
981a728d13
|
fix the robust parser for unknown tokens
|
2013-11-01 13:05:17 +00:00 |
|
kr.angelov
|
ad7d18a448
|
bugfix in linearizer.c
|
2013-11-01 11:02:12 +00:00 |
|
kr.angelov
|
a0505da063
|
remove the include to mman.h in jit.c since it doesn't seem to be used
|
2013-11-01 07:46:24 +00:00 |
|
kr.angelov
|
20d465ca8c
|
fixed utf-8 decoding problem in libgu
|
2013-10-31 13:20:12 +00:00 |
|
kr.angelov
|
050ebd469c
|
bracketedLinearize in Python is now using the linref
|
2013-10-31 09:04:07 +00:00 |
|
kr.angelov
|
fed16ca9e5
|
use linref in the C linearizer. The robust linearization is now fully supported
|
2013-10-30 21:43:52 +00:00 |
|
kr.angelov
|
48b639e64e
|
fix the debug mode in the linearizer after the refactoring in libgu
|
2013-10-30 21:06:55 +00:00 |
|
kr.angelov
|
042243f08a
|
added the linref construction in GF. The PGF version number is now bumped
|
2013-10-30 12:53:36 +00:00 |
|
kr.angelov
|
c60a019b70
|
another fix for 'pre'
|
2013-10-28 13:54:06 +00:00 |
|
kr.angelov
|
151f86c1e9
|
fix the handling of 'pre' in the C runtime
|
2013-10-28 12:35:37 +00:00 |
|
kr.angelov
|
cd5a0de253
|
bugfix in gu/seq.h
|
2013-10-28 08:58:36 +00:00 |
|
kr.angelov
|
0882396875
|
tabular linearization in the C and Java runtimes
|
2013-10-23 14:49:28 +00:00 |
|
kr.angelov
|
e408f0a0db
|
clumsy fix for nonExist in pgf-translate
|
2013-10-21 12:35:34 +00:00 |
|