Daniel
59b1d77ad6
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
37 lines
1.5 KiB
Julia
37 lines
1.5 KiB
Julia
expressions = Vector{Expr}(undef, 1)
|
|
variables = Matrix{Float64}(undef, 1,2)
|
|
parameters = Vector{Vector{Float64}}(undef, 1)
|
|
|
|
# Resulting value should be 10
|
|
expressions[1] = :(x1 + 1 * x2 + p1)
|
|
variables[1,1] = 2
|
|
variables[1,2] = 3
|
|
parameters[1] = Vector{Float64}(undef, 1)
|
|
parameters[1][1] = 5
|
|
|
|
@testset "Test symtable construction" begin
|
|
symtable = ExpressionExecutorCuda.ExpressionProcessing.construct_symtable(expressions, variables, parameters)
|
|
@test haskey(symtable, (expressions[1], :x1))
|
|
@test haskey(symtable, (expressions[1], :x2))
|
|
@test haskey(symtable, (expressions[1], :p1))
|
|
|
|
@test symtable[(expressions[1], :x1)] ≈ 2.0 atol=0.01
|
|
@test symtable[(expressions[1], :x2)] ≈ 3.0 atol=0.01
|
|
@test symtable[(expressions[1], :p1)] ≈ 5.0 atol=0.01
|
|
end
|
|
|
|
@testset "Test variable replacement in expression" begin
|
|
symtable = ExpressionExecutorCuda.ExpressionProcessing.construct_symtable(expressions, variables, parameters)
|
|
exprCopy = deepcopy(expressions[1])
|
|
ExpressionExecutorCuda.ExpressionProcessing.replace_variables!(exprCopy, symtable, expressions[1])
|
|
|
|
@test eval(exprCopy) == 10 # If it can be evaluated, it means all variables have been replaced, as there are no globally defined variables
|
|
end
|
|
|
|
@testset "Test conversion to postfix" begin
|
|
reference = Array{Union{Float64,String},1}()
|
|
append!(reference, ["x1", 1.0, "x2", "*", "+", "p1", "+"])
|
|
postfix = ExpressionExecutorCuda.ExpressionProcessing.expr_to_postfix(expressions[1])
|
|
|
|
@test isequal(reference, postfix)
|
|
end |