laurentbartholdi

Results 16 issues of laurentbartholdi

Hi, I just bought a Fujitsu Quaderno A4, and saw somewhere that the modifications you created should be compatible with that model (which I understand is really based on the...

I have a system with 84 solutions, but `HomotopyContinuation` returns only 83 when I use `InterpretedSystem`: ```julia julia> function hc_bicrit(m,n) @assert 2≤m≤n-1 @var a,b, z[2:n-1] cycle = [0; 1; z[1:m-2]...;...

I have a largeish sparse, symmetric matrix on which eigs(mat,which=:SM) fails; but it succeeds on small submatrices. TL;dr: it seems `bunchkaufman!` is called with a sparse matrix, but it can...

I tried the simple example from the manual, ``` JLCXX_MODULE define_julia_module(jlcxx::Module& mod) { FLAGS_fst_error_fatal = false; mod.add_type("MyStruct"); mod.method("greet", []() {return "Hello";}); } ``` which runs fine in Julia 1.8, but...

`integer_partitions(0)` returns the empty list, while there is a partition of 0, namely `Int[]`. The error is in src/partitions.c:459, which should return `Vector{Int}[[]]` or `[Int[]]`. There is also a problem...

I updated Julia a few days ago from its github source; and BAM CxxWrap doesn't work anymore. The message, after updating CxxWrap to #main or to the latest release: ```julia...

With Julia 1.7 and the StaticArrays v0.12.5: ``` julia> N = 14; m = SMatrix{N,N}(rand(N,N)); julia> x->x*m # works fine #1 (generic function with 1 method) julia> @time [x->x*g for...

compile-time-performance

For use of Spasm as a library, I replaced the "fprintf(stderr,..." by calls to "logprintf(...)" which defaults to fprintf(stderr) but can be set to call back a function.

A few additions so that spasm compiles on macOS