n0rbed / Root-finding

root finding for Symbolics.jl
0 stars 1 forks source link

include clean_f inside filter_poly? #7

Closed n0rbed closed 3 weeks ago

n0rbed commented 3 weeks ago
    if oper === (/)
        args = unsorted_arguments(unwrapped_f)
        filtered_expr = Symbolics.wrap(args[1])
        @info args[2] != 0
    end

function clean_f includes this peace of code above, maybe we should include this inside filter_poly itself? to declutter the main solvers, also since this is repeated basically everywhere filter_poly is called.

n0rbed commented 3 weeks ago

done