| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-17 | make sure that pgf_concrete_load has no effect on grammars that are ↵ | kr.angelov | |
| completely loaded | |||
| 2013-12-10 | loading and unloading of languages in the C runtime and in the Python bindings | kr.angelov | |
| 2013-11-27 | added API in the C runtime and the Java binding for checking whether a given ↵ | kr.angelov | |
| function is linearizable in a given language. This is used in the Android UI for better vizualizations | |||
| 2013-11-22 | the GF syntax for identifiers is exteded with quoted forms, i.e. you could ↵ | kr.angelov | |
| 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 | bugfix in the debug mode for the parser | kr.angelov | |
| 2013-11-21 | bugfix in the C runtime | kr.angelov | |
| 2013-11-20 | fix in the Python binding | kr.angelov | |
| 2013-11-18 | bugfix in the robust parser | kr.angelov | |
| 2013-11-15 | fixes in the C runtime to avoid warnings when compiling on MacOS | kr.angelov | |
| 2013-11-15 | pgf_read should open the grammar file in binary mode to prevent the Windows ↵ | kr.angelov | |
| runtime from messing up the content. | |||
| 2013-11-15 | pgf_reader_done should do nothing if the reading has failed | kr.angelov | |
| 2013-11-13 | bugfix in the C runtime which had made the parser up to 200 times slower for ↵ | kr.angelov | |
| some sentences | |||
| 2013-11-12 | added Predef.SOFT_BIND. This special token allows zero or more spaces ↵ | kr.angelov | |
| between ordinary tokens. It is also used in the English RGL to attach the commas to the previous word. | |||
| 2013-11-07 | factor of 3 speedup for the translation without slowing down the grammar ↵ | kr.angelov | |
| 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 | fix for the memory allocation in the jitter which should work for Windows. | kr.angelov | |
| 2013-11-06 | fix in the parsing with pre | kr.angelov | |
| 2013-11-06 | the content of ParseEngAbs3.probs is now merged with ParseEngAbs.probs. The ↵ | kr.angelov | |
| 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 | when printing floating literals use %lg instead of %lf for better output | kr.angelov | |
| 2013-11-04 | fix the debug mode of the JIT compiler after the refactoring in libgu | kr.angelov | |
| 2013-11-04 | A simple type checker in the C runtime. Dependent types are not supported ↵ | kr.angelov | |
| yet but HOAS is implemented. The API is accessible from Python as well | |||
| 2013-11-04 | bug fix in the linearizer | kr.angelov | |
| 2013-11-02 | linearization for HOAS trees. It should word but we need a type checker in ↵ | kr.angelov | |
| order to test it properly | |||
| 2013-11-01 | fix the parseval metric after the redesign in the C runtime | kr.angelov | |
| 2013-11-01 | bugfix in the linearizer | kr.angelov | |
| 2013-11-01 | fix the robust parser for unknown tokens | kr.angelov | |
| 2013-11-01 | bugfix in linearizer.c | kr.angelov | |
| 2013-11-01 | remove the include to mman.h in jit.c since it doesn't seem to be used | kr.angelov | |
| 2013-10-31 | bracketedLinearize in Python is now using the linref | kr.angelov | |
| 2013-10-30 | use linref in the C linearizer. The robust linearization is now fully supported | kr.angelov | |
| 2013-10-30 | fix the debug mode in the linearizer after the refactoring in libgu | kr.angelov | |
| 2013-10-30 | added the linref construction in GF. The PGF version number is now bumped | kr.angelov | |
| 2013-10-28 | another fix for 'pre' | kr.angelov | |
| 2013-10-28 | fix the handling of 'pre' in the C runtime | kr.angelov | |
| 2013-10-23 | tabular linearization in the C and Java runtimes | kr.angelov | |
| 2013-10-21 | bugfix for the custom literals in the C runtime | kr.angelov | |
| 2013-10-09 | avoid warning in parser.c when debugging is OFF | kr.angelov | |
| 2013-10-09 | a major redesign in the C runtime. The parser and the linearizer now fully ↵ | kr.angelov | |
| support BIND. The following things are still broken: parseval, word completion, handling 'pre', the robust mode | |||
| 2013-10-08 | fix the robust parser after the change of GuString | kr.angelov | |
| 2013-10-08 | bugfix in GNU lightning for ARM | kr.angelov | |
| 2013-10-07 | fix the grammar printer after the change of GuString in libgu | kr.angelov | |
| 2013-10-04 | suppress warning in graphviz.c | kr.angelov | |
| 2013-10-04 | GuString is now an ordinary C string - it makes live easier. In addition ↵ | kr.angelov | |
| PgfSymbolKS, PgfExprFun and PgfLiteralStr now keep their strings as embedded flexible arrays. The latest change gives us the same compactness as the old representation but it is a lot easier to use. | |||
| 2013-10-03 | the symbol for nonExist in the GF runtime should be the last. this ↵ | kr.angelov | |
| simplifies the binary search in the C runtime | |||
| 2013-09-30 | fix the graphviz visualization after the introduction of nonExist and BIND | kr.angelov | |
| 2013-09-30 | better handling for nonExist in the C runtime. BIND is also supported in the ↵ | kr.angelov | |
| linearizer but not in the parser yet | |||
| 2013-09-27 | a major refactoring in the C and the Haskell runtimes. Note incompatible ↵ | kr.angelov | |
| change in the PGF format!!! The following are the outcomes: - Predef.nonExist is fully supported by both the Haskell and the C runtimes - Predef.BIND is now an internal compiler defined token. For now it behaves just as usual for the Haskell runtime, i.e. it generates &+. However, the special treatment will let us to handle it properly in the C runtime. - This required a major change in the PGF format since both nonExist and BIND may appear inside 'pre' and this was not supported before. | |||
| 2013-09-26 | remove pgf/edsl.h from the C runtime | kr.angelov | |
| 2013-09-25 | fix the debug mode of the parser after the refactoring in libgu | kr.angelov | |
| 2013-09-25 | added assertion in the JIT compiler which checks that we are not going ↵ | kr.angelov | |
| outside of the compilation window | |||
| 2013-09-18 | the PGF reader now releases strings that are not used after the loading | kr.angelov | |
