Suavesito

Results 28 comments of Suavesito

Thanks for the fast response. :) I first heard of them as sticky in bspwm reddit, nos that you tell so. I would like to contribute to this as it...

I do have experience with C++ programming. Thanks for the way through, I'll begin working on it. :D

Interesting #277 does not solve this, i.e. ``` julia> using SymbolicUtils julia> @syms x y z (x, y, z) julia> r = @numrule((~x*~α - ~x*~β) => *(~α + ~β, ~x))...

Now i see why... ``` julia> using SymbolicUtils julia> SymbolicUtils.expr_to_canon(:(~x*~a - ~x*~b)) :(~x * ~a + -1 * (~x * ~b)) julia> :(~x*~a + (-1)*~x*~b) :(~x * ~a + -1...

I'll modify #277 to handle this cases. This issue was a really good catch.

Yeah! of course, I just wanted to have some insight on the aproach and the implementation, so if it was OK then I could worked it further. If you think...

So I have been in finals and I hadn't have time to finish this. But once this month ends I'll be able to work in this and another issues. Just...

Coming back to check this. Now it seems even messier than last time, any commentaries?

Under the hood they "compile" a function to do the pattern matching, they do it with a lot of _higher order functions_ fu. So there are just a few ways...

Ufff, this goes further... found this while fixing #208. ``` julia> using SymbolicUtils julia> @syms x y z (x, y, z) julia> @rule(~x-1 => ~x)(x-1) # expected to nothing julia>...