Herman Sletmoen

Results 13 comments of Herman Sletmoen

For anyone on Fedora with exactly the same issue, here is my quick fix: ``` sudo firewall-cmd --add-port=5901/udp # open the required UDP 5901 port sudo firewall-cmd --runtime-to-permanent # make...

Here is the most minimal example I am able to reduce it to: ```julia using Symbolics @variables a b simplify(a/b + 2*a^2/b) ``` This outputs `(a + 2.0(a^2)) / b`,...

I've done some digging. It seems that even ```julia using SymbolicUtils @syms x pf = PolyForm(x) # polynomial 1*x^1 div(pf, pf) # x / x ``` outputs `1.0` instead of...

All examples in this issue would be fixed by JuliaAlgebra/MultivariatePolynomials.jl#294.

My vision with this library is to provide an alternative to obtaining paper maps for routes. Instead of purchasing maps of predetermined areas that may or may not cover a...

Where exactly do you mean? Do you mean that `linear_expansion` should return fractions for `a` and `b` if they are not divisible, and integers if they are divisible? Or the...

From what I can tell, this happens because [`InitializationProblem()`](https://github.com/SciML/ModelingToolkit.jl/blob/master/src/systems/diffeqs/abstractodesystem.jl) calls [`generate_initializesystem()`](https://github.com/SciML/ModelingToolkit.jl/blob/master/src/systems/nonlinear/initializesystem.jl), which does not treat parameters as (possible) unknowns. For example ```julia isys2 = generate_initializesystem(sys2; u0map = [s => 1.0,...

Sorry, I should have clarified. It fails on both master and the most recent stable. Here is `]st` on `master`: ```julia [0c46a032] DifferentialEquations v7.13.0 [f6369f11] ForwardDiff v0.10.36 [961ee093] ModelingToolkit v9.12.0...

Thanks! In case it's helpful, here are some simplified details about my real use case: I have an ODE model with, say, 3 variables constrained by 1 equation. I want...

Would it be more efficient to solve the initialization problem rather than create a new ODE problem? For example: ```julia # continued from above code snippet x0init(y0, z0) = solve(ModelingToolkit.InitializationProblem(sys,...