Skip to content

Commit

Permalink
Revert "Fix typo in standard example connectivity"
Browse files Browse the repository at this point in the history
This reverts commit 3aec746.

Turns out, the example was the one from the 2012 paper, not the IIT 3.0.
So the connectivity was in fact correct.
  • Loading branch information
wmayner committed Dec 2, 2014
1 parent 6518dcf commit 4281cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyphi/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def network():
[1, 1, 1],
[1, 1, 0]])

cm = np.array([[0, 1, 1],
cm = np.array([[0, 0, 1],
[1, 0, 1],
[1, 1, 0]])

Expand Down

0 comments on commit 4281cc2

Please sign in to comment.