Closed richardyz98 closed 3 years ago
Hi @richardyz98 -- this is actually intentional. The self._character_matrix
is a hidden variable that stores the default character matrix. self.character_matrix
is the property character matrix that can be set, copied, and manipulated.
Is there another problem with this?
EDIT (7/26/21 @ 5:16PM PT): This issue was not a bug but rather a small misunderstanding about the code and the use of setters
on Python class properties.
106
In the CassiopeiaTree, the character matrix attribute is called by
self._character_matrix
in some methods and in other methods called byself.character_matrix
.Sorry I didn't catch this earlier!