ExpressionProcessing: Variables/Parameters as array #12

Open
opened 2025-03-29 09:21:36 +01:00 by Daniel · 0 comments
Owner

In the CPU interpreter, the variables and parameters are array accesses.

julia> dump(:(p[1] + p1))
Expr
  head: Symbol call
  args: Array{Any}((3,))
    1: Symbol +
    2: Expr
      head: Symbol ref
      args: Array{Any}((2,))
        1: Symbol p
        2: Int64 1
    3: Symbol p1

This handling should be added

In the CPU interpreter, the variables and parameters are array accesses. ``` julia> dump(:(p[1] + p1)) Expr head: Symbol call args: Array{Any}((3,)) 1: Symbol + 2: Expr head: Symbol ref args: Array{Any}((2,)) 1: Symbol p 2: Int64 1 3: Symbol p1 ``` This handling should be added
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Daniel/master-thesis#12
No description provided.