jarble

Results 72 issues of jarble

Does Fastensthein include a method to find substrings that are similar to a search string? I know that this can be done using [a modified version](https://stackoverflow.com/a/37804497/975097) of the Levenshtein distance...

Currently, Tau-Prolog requires Prolog queries to be passed as strings to the interpreter: `session.query("nonvar(1)");` But instead of passing a string, I'd prefer to call Prolog functions directly from JavaScript: ```...

request

On the [demo page](https://nerdamer.com/demo.html), I tried to solve this system of equations: `solveEquations([abs(x)=8,x^2=64])` But Nerdamer shows an error message: `Something went wrong. Nerdamer could not parse expression! ParseError: Cannot read...

It seems that Nerdamer is not yet able to solve equations involving piecewise expressions or boolean formulas, but I see a relatively easy way to solve this problem. It is...

enhancement

Is it possible to define generic functions in Slang with array types? I want to define a function that concatenates two arrays of any size, but this would require generics:...

Is the Slang compiler able to generate Metal or ESSL shaders instead of GLSL? If the Slang compiler doesn't already have this feature, then it could probably use [SPIRV-Cross](https://github.com/microsoft/ShaderConductor) or...

kind:enhancement
priority:low
goal:forward looking

The README includes a link to [flow-runtime](https://codemix.github.io/flow-runtime), but the link is broken. Has it moved to a different URL?

GLSL currently does not support tail recursion, but this feature could be easily implemented using tail-call optimization. For example, this function is not yet compatible with GLSL: ``` int fib(int...

The link to the [online editor](https://pasukon.rocks/#try-it) in this repository is broken. Did it move to a different page?

Can PrefixSpan find sequential patterns in multiple lists, instead of just one list? For example, I'd want to find the most frequent patterns that occur in both of these lists:...