Isuru Fernando

Results 928 comments of Isuru Fernando

https://github.com/tonbit/coroutine is a small header only library implementing coroutines supporting linux, osx and windows

Agree with all of the above. PRs are welcome.

@zhaoli-IHEP, we create julia objects from symengine C objects as necessary. Therefore `expr` and `(expr+2)-2` are two different objects, but `==` operator is overloaded to compare. You'll have to overload...

I can't reproduce this. ```julia julia> using SymEngine julia> @vars a (a,) julia> b = zeros(2) 2-element Array{Float64,1}: 0.0 0.0 julia> b[1]=a ERROR: ArgumentError: symbolic value cannot be evaluated to...

There's the `get_name` function. See https://github.com/symengine/symengine.py/blob/master/symengine/lib/symengine_wrapper.pyx#L2626 PRs welcome to add a `name` property.

I think I fixed this in https://github.com/symengine/symengine/commit/c853166c1e5cada03a07112c5fca89de991ba14b

See https://github.com/symengine/symengine/pull/1271/files

It should be possible. We first need to wrap the C++ function in C and then expose it here in the julia code. I don't have time at the moment...

Yes, relationals have to be implemented as well.