Skip to content

Commit

Permalink
Replace triangle with octagon for Potential.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpgoldman committed May 30, 2019
1 parent 0d98ea6 commit 1e24fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc3/model_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _make_node(self, var_name, graph):
# Get name for node
if v in self.model.potentials:
distribution = 'Potential'
attrs['shape'] = 'triangle'
attrs['shape'] = 'octagon'
elif hasattr(v, 'distribution'):
distribution = v.distribution.__class__.__name__
elif isinstance(v, SharedVariable):
Expand Down

0 comments on commit 1e24fdf

Please sign in to comment.