link-grammar icon indicating copy to clipboard operation
link-grammar copied to clipboard

The CMU Link Grammar natural language parser

Results 101 link-grammar issues
Sort by recently updated
recently updated
newest added

`dup_word_error()` uses a static variable as a cache, which is of course wrong. I fixed it by caching in `Dictionary_s`. (In a branch in which I restored the ram dict...

This patch implements affix regexes. The idea is to be able to strip off affixes and split words according to regexes. I initially found it useful for `amy`/`ady`/`any` (one of...

I finished implementing and testinmg it, and here are the examples I used: ``` text % TODO: this list should be expanded with other "typical"(?) junk % that is commonly...

I am running into a parsing discrepancy between very similar sentences: Parsed: `"Create a folder named "Right Here"."` Doesn't Parse `"Create a folder named "Something Here"."` Note the only difference...

When building on Debian testing, I got the errors when running `configure`. I do NOT have python devel packages installed. ``` checking for python3.10... (cached) /usr/bin/python3 checking for a version...

While working on the affix stripping code I noted that subscripted `LPUNC` tokens are mishandled. For example, using "any": ``` text linkparser> ...test Found 1 linkage (1 had no P.P....

While running tests on "amy" with ASN/UBSAN, I got this: ``` ... amy/link-grammar/parse/count.c:1390:7: runtime error: signed integer overflow: 2147483647 * 5569944920 cannot be represented in type 'long int' ... amy/link-grammar/parse/count.c:1390:7:...

bug

Just now it is done in `strtodC()` by invoking`strtof_l()` with the `C` locale. However, if there are systems that don't have this function (those not having `locale_t` and at least...

LGPL-2.1 is deprecated by SPDX, please consider using LGPL-2.1-only or LGPL-2.1-or-later. Thanks! relates to Homebrew/homebrew-core#76926

In [PR #795](https://github.com/opencog/link-grammar/pull/795#issuecomment-404310783) @linas wrote: >The python-examples directory is getting crowded. Perhaps there should be a python-tests directory, either in bindings or in the main tests directory? When the tests...

python