| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-09 | GuVariant is now plain uintptr_t instead of a structure to make it easier to ↵ | kr.angelov | |
| write Haskell bindings | |||
| 2013-12-10 | loading and unloading of languages in the C runtime and in the Python bindings | kr.angelov | |
| 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-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-10-30 | added the linref construction in GF. The PGF version number is now bumped | 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-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-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-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-17 | a major refactoring in the C runtime. GuList is now removed and replaced ↵ | kr.angelov | |
| with GuSeq. The GuSeq/GuBuf API is simplified | |||
| 2013-09-13 | remove leftcorner_cat_idx which is now redundant | kr.angelov | |
| 2013-08-23 | nonExist now does the expected thing | kr.angelov | |
| 2013-06-26 | we no longer maintain an explicit list of functions per category since now ↵ | kr.angelov | |
| it is implicitly kept in the JIT compiled code | |||
| 2013-06-25 | Now there is a just-in-time compiler which generates native code for proof ↵ | kr.angelov | |
| search. This is already used by the exhaustive generator. The time to generate 10000 abstract trees with ParseEng went down from 4.43 sec to 0.29 sec. | |||
| 2013-04-26 | finally the statistical parser is able to return all possible abstract trees | kr.angelov | |
| 2013-04-18 | added API for computing bracketed strings from Python and C | kr.angelov | |
| 2013-02-11 | refactoring: now all named objects in the C runtime have an explicit name field | kr.angelov | |
| 2013-02-11 | remove the pgf2yaml tool which was both broken and redundant. The ↵ | kr.angelov | |
| declarations for generic programming from data.c are removed as well | |||
| 2013-02-11 | the grammar reader in the C runtime is completely rewritten and it doesn't ↵ | kr.angelov | |
| use the generic programming API | |||
| 2013-01-07 | a new reasoner in the C runtime. It supports tabling which makes it ↵ | kr.angelov | |
| decideable for propositional logic. dependent types and high-order types are not supported yet. The generation is still in decreasing probability order | |||
| 2012-12-19 | a major reimplementation of the linearizer in the C runtime | kr.angelov | |
| 2012-12-13 | a top-level API for parsing in the C runtime | kr.angelov | |
| 2012-12-11 | bugfix for robust parsing with multi-word units | kr.angelov | |
| 2012-10-25 | a major refactoring in the robust parser: bottom-up filtering and garbage ↵ | kr.angelov | |
| collection for the chart | |||
| 2012-09-18 | the C runtime now has a type prob_t which is used only for probability values | kr.angelov | |
| 2012-09-06 | bugfix in the C parser | kr.angelov | |
| 2012-06-13 | Use a separated tag for meta productions in the robust parser. This cleans ↵ | kr.angelov | |
| up the code a lot | |||
| 2012-06-12 | now there is a limit of 2000000 items in the chart of the robust parser. ↵ | kr.angelov | |
| This prevents from explosion in the memory size but it will also prevent us from parsing some sentences. | |||
| 2012-06-12 | now the robust parser is purely top-down and the meta rules compete on a ↵ | kr.angelov | |
| fair basis with the grammar rules | |||
| 2012-05-16 | another attempt to port the robust parser to MacOS | kr.angelov | |
| 2012-05-08 | a new unbiased statistical parser. it is still far from perfect use it on ↵ | kr.angelov | |
| your own risk. | |||
| 2012-04-12 | some fixes in the robust parser and a new API for literals | kr.angelov | |
| 2012-03-12 | libpgf: a new implementation for literals which also allows custom literals. ↵ | kr.angelov | |
| the same mechanism is now used for the metavariables | |||
| 2012-03-07 | libpgf: implementation for built in literal categories | kr.angelov | |
| 2012-03-05 | libpgf: now all concrete functions and categories are explicitly linked to ↵ | kr.angelov | |
| their abstract counter parts | |||
| 2012-02-29 | libpgf: the first prototype for the robust parser | kr.angelov | |
| 2012-02-22 | libpgf: now we have both complete bottom up index for robust parsing and ↵ | kr.angelov | |
| fast lexical lookup from the same index | |||
| 2012-02-21 | libpgf: added index for fast lexicon lookup. Still not perfect | kr.angelov | |
| 2012-02-18 | libpgf: remove the now redundant field extra_ccats in PgfConcr | kr.angelov | |
| 2012-02-18 | libpgf: now the linearization index is created during the grammar loading ↵ | kr.angelov | |
| which also makes the types PgfLzr and PgfParser redundant. | |||
| 2012-02-17 | libpgf: simplify the loading of PgfCncCat | kr.angelov | |
| 2012-01-24 | libpgf: few fixes to make the loading of grammars with def rules possible | kr.angelov | |
| 2012-01-23 | libpgf: debugging framework for the parser | kr.angelov | |
| 2012-01-23 | libpgf: move the lindefs field from PgfCncCat to PgfCCat. display the list ↵ | kr.angelov | |
| in the grammar printout | |||
| 2012-01-21 | added an API for printing the PGF to human readable format | kr.angelov | |
| 2012-01-20 | initial import of the C runtime | kr.angelov | |
| 2010-06-16 | grammar loader and unloader in C. Abstract Syntax only! | krasimir | |
