Mattia Micheletta Merlin
Mattia Micheletta Merlin
I was not able to find cmake in the supported formats in my app (even tough is on the list of supported formats). Would be cool to add the possibility...
https://github.com/yzhang-gh/vscode-markdown/assets/54026028/53c3da52-e3b1-4102-91fa-d7d51929917b ### Proposal When I press command shift v to show a preview of the file, and I put the preview side by side with the markdown file, if the...
[This](https://youtu.be/a-767WnbaCQ) YouTube video got me the idea of simulating [percolation](https://en.wikipedia.org/wiki/Percolation_theory): a mathematical model of phase transition. I tried ([my code](https://github.com/Bumblebee00/Percolation)) but I am not happy with the result because for...
I want to color the icons of the courses i passed, in the didattica page with a grey color. Furhtermore i want to color the others the same color of...
RIght now: ```julia julia> √x===x^(0.5) false julia> √x===x^(1//2) false ``` do we want to add this feature? could it be wrong or counterproductive in some instances?
for issue [1199](https://github.com/JuliaSymbolics/Symbolics.jl/issues/1199)
``` julia> @variables x y z::Complex{Real} 3-element Vector{Complex{Num}}: x y z julia> x \ y y / x julia> x \ z ERROR: StackOverflowError: Stacktrace: [1] arguments(a::Symbolics.ComplexTerm{Real}) @ Symbolics ~/.julia/dev/Symbolics/src/complex.jl:23...
``` julia> @variables x 1-element Vector{Num}: x julia> eq = (x + 3 + im ~ 0) 3 + x ~ 0 julia> symbolic_solve(eq,x) 1-element Vector{BigInt}: -3 ```
this pr builds on top of [defslot](https://github.com/JuliaSymbolics/SymbolicUtils.jl/pull/749) and extends [negative exponent matching](https://github.com/JuliaSymbolics/SymbolicUtils.jl/pull/750). Before this pr julia symbolic rewriting rules had this unfortunate behaviour: ``` julia> @syms a x (a, x)...
This pr builds on top of the defslot feature i added in another pr. The aim is for rule `@rule (~x)^(~m) => ..something..` to match 1 / (x^2) with m=-2....