Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Bug in vector assignment #143

Open
Open
@jembrown

Description

@jembrown

Something about the way vectors and vector elements are created and/or assigned leads to a bug when reassigning a vector to a variable name. In this example, testVec[1] should be 0 at the end.

> testVec = v(0,0)
> testVec[1] += 1
> testVec
   [ 1, 0 ]
> testVec = v(0,0)
> testVec
   [ 0, 0 ]
> testVec[1]
   1

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions