Martin R. Albrecht
Martin R. Albrecht
Autocompletion won't work for `\cite{foo,ba_` this can be fixed by doing something like this: ```lisp (prefix (let ((prefixes (company-auctex-prefix "\\\\cite[^[{]*\\(?:\\[[^]]*\\]\\)?{\\([^}]*\\)\\="))) (if prefixes (last (split-string prefixes "," t)) nil))) ``` https://github.com/malb/emacs.d/commit/4f6267f23c653af706550b2c89e31eb174a76073
- lattice attack (q-ary lattices) - BKW style (optional) - Arora-GB style (optional)
BibTeX requires files in a particular order (dependencies first) and so does this library (also dependencies first). However, the double reversal makes the latter incompatible with the former. Consider a...
We should use Doxygen's - [examples](http://www.stack.nl/~dimitri/doxygen/manual/commands.html#cmdexample) to give easily digestible examples of how to use the library - [modules](http://www.stack.nl/~dimitri/doxygen/manual/grouping.html) to distinguish high-level and low-level functionality
See https://fplll.github.io/fplll/examples.html
We should not bomb out when a user tries to use a dimension larger than what's in the strategy file but rather compute a strategy on the fly for large...
Enumeration seems to struggle with large entries. This hangs: ```python In [1]: from fpylll import * In [2]: A = IntegerMatrix.random(100, "qary", bits=30, k=50) In [3]: LLL.reduction(A) In [4]: AA...
Paul Zimmermann suggested we check out [__float128](https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html) as a floating point type. From the docs: > Support for these additional types includes the arithmetic operators: add, > subtract, multiply, divide;...