Marco Heisig

Results 19 issues of Marco Heisig

I use this airline theme together with the doom-nord. It might be useful for others, too.

```lisp (with-input-from-string (stream "#1=(#1#)") (eclector.concrete-syntax-tree:cst-read stream)) ``` evaluates to a cst whose raw data is `#1=(#1#)`, but whose FIRST cst has the raw data `(t)`

bug

The simple, recursive scheme that is currently used to scan and print data structures occasionally blows the stack. It only happens for very large data structures, but it is still...

Typo is a portable type inference library for Common Lisp. It also supports automatic differentiation and has a built in function data base for a large part of Common Lisp....

Second round of Trucler feedback: - variable-description should inherit ignore-mixin - every variable can be declared as 'ignore' or 'ignorable'. - authentic-variable-description should inherit dynamic-extent-mixin. The 'dynamic-extent' annotation makes sense...

Find a way to nicely integrate MPI IO into Common Lisp.

enhancement

MPI 3.0 introduced many primitives for one-sided communication (get/put/windows...). It would be nice to have access to those from cl-mpi.

enhancement

Not all collective MPI operations are currently supported. Someone should fix this...

enhancement

Currently, cl-mpi creates a small shared C library to interface with the host MPI. This is inconvenient on distributed systems, because it requires recompilation on each node. Someone should add...

enhancement

Debugging MPI applications is painful. It would be nice to have an optional extension of cl-mpi that provides some means for distributed debugging. A possible implementation would be to provide...

enhancement