symengine / SymEngine.jl

Julia wrappers of SymEngine
MIT License
192 stars 43 forks source link

Effective multiplication of n multipliers #246

Closed PerformanceCoder closed 2 years ago

PerformanceCoder commented 2 years ago

Adds optimized version of array multiplication. Currently, code similar to a1*a2*a3*a4 will use afoldl to evaluate product.

A PR was created to add C wrapper of array product (https://github.com/symengine/symengine/pull/1880). If it will be merged, then this PR could also be merged.

isuruf commented 2 years ago

Thanks