expression processing: fixed error if expression contained nested unary operators such as log(sqrt(4))
Some checks are pending
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.10) (push) Waiting to run
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.6) (push) Waiting to run
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, pre) (push) Waiting to run

This commit is contained in:
2025-04-19 10:54:41 +02:00
parent 0d888edc52
commit 90a4194283
3 changed files with 10 additions and 8 deletions

View File

@ -132,8 +132,8 @@ end
# var set 1
@test isapprox(result[1,1], 37.32, atol=0.01) # expr1
@test isapprox(result[1,2], 64.74, atol=0.01) # expr2
@test isapprox(result[1,2], 64.75, atol=0.01) # expr2
# var set 2
@test isapprox(result[2,1], 37.32, atol=0.01) # expr1
@test isapprox(result[2,2], -83.65, atol=0.01) # expr2
@test isapprox(result[2,2], -83.66, atol=0.01) # expr2
end