Motive
Hi, I have bit tensors to find fixed point of 3-dimensional ODE and I tried drawing nullcline first. Because intersection of nullcline is a candidate of fixed point, I have to evaluate so many times. I want to use short cirquit evaluation &&
due to performance issue.
Questions
But I found the operator &&
couldn’t used in reduce.
- Is it intentional? Why
&&
only doesn’t work while&
works? - Is there any breakthrough?
julia> reduce(&, [true, false, true])
false
julia> reduce(&&, [true, false, true])
ERROR: ParseError:
# Error @ c:\Users\rmsms\OneDrive\lab\population_dynamics\src\ddm.jl:89:8
reduce(&&, [true, false, true])
# └┘ ── invalid identifier
Stacktrace:
[1] top-level scope
@ c:\Users\rmsms\OneDrive\lab\population_dynamics\src\ddm.jl:89
Enviroment
- julia v1.10.0
- windows 11