Exemplo n.º 1
0
    def copy(self, g):
        """ Copy the contents to the destination g
        :param g: the GTreeNode genome destination
        """

        GTreeNodeBase.copy(self, g)
        g.node_data = self.node_data
Exemplo n.º 2
0
    def copy(self, g):

        """ Copy the contents to the destination g
        :param g: the GTreeNode genome destination
        """

        GTreeNodeBase.copy(self, g)
        g.node_data = self.node_data
Exemplo n.º 3
0
    def __repr__(self):

        str_repr = GTreeNodeBase.__repr__(self)
        str_repr += " - [%s]" % self.node_data
        return str_repr
Exemplo n.º 4
0
    def __repr__(self):

        str_repr = GTreeNodeBase.__repr__(self)
        str_repr += " - [%s]" % self.node_data
        return str_repr