models.cuts¶
Objects that represent partitions of sets of nodes.
-
class
pyphi.models.cuts.NullCut(indices, node_labels=None)¶ The cut that does nothing.
-
property
is_null¶ This is the only cut where
is_null == True.
-
property
indices¶ Indices of the cut.
-
cut_matrix(n)¶ Return a matrix of zeros.
-
to_json()¶
-
property
-
class
pyphi.models.cuts.Cut(from_nodes, to_nodes, node_labels=None)¶ Represents a unidirectional cut.
-
from_nodes¶ Connections from this group of nodes to those in
to_nodesare from_nodes.- Type
tuple[int]
-
to_nodes¶ Connections to this group of nodes from those in
from_nodesare from_nodes.- Type
tuple[int]
-
from_nodes¶
-
to_nodes¶
-
node_labels¶
-
property
indices¶ Indices of this cut.
-
cut_matrix(n)¶ Compute the cut matrix for this cut.
The cut matrix is a square matrix which represents connections severed by the cut.
- Parameters
n (int) – The size of the network.
Example
>>> cut = Cut((1,), (2,)) >>> cut.cut_matrix(3) array([[0., 0., 0.], [0., 0., 1.], [0., 0., 0.]])
-
to_json()¶ Return a JSON-serializable representation.
-
-
class
pyphi.models.cuts.KCut(direction, partition, node_labels=None)¶ A cut that severs all connections between parts of a K-partition.
-
property
indices¶ Indices of this cut.
-
cut_matrix(n)¶ The matrix of connections that are severed by this cut.
-
to_json()¶
-
property
-
class
pyphi.models.cuts.ActualCut(direction, partition, node_labels=None)¶ Represents an cut for a
Transition.-
property
indices¶ Indices of this cut.
-
property
-
class
pyphi.models.cuts.Part(mechanism, purview)¶ Represents one part of a
Bipartition.-
mechanism¶ The nodes in the mechanism for this part.
- Type
tuple[int]
-
purview¶ The nodes in the mechanism for this part.
- Type
tuple[int]
Example
When calculating \(\varphi\) of a 3-node subsystem, we partition the system in the following way:
mechanism: A,C B ─── ✕ ─── purview: B A,CThis class represents one term in the above product.
Create new instance of Part(mechanism, purview)
-
to_json()¶ Return a JSON-serializable representation.
-
-
class
pyphi.models.cuts.KPartition(*parts, node_labels=None)¶ A partition with an arbitrary number of parts.
-
parts¶
-
node_labels¶
-
property
mechanism¶ The nodes of the mechanism in the partition.
- Type
tuple[int]
-
property
purview¶ The nodes of the purview in the partition.
- Type
tuple[int]
-
normalize()¶ Normalize the order of parts in the partition.
-
to_json()¶
-
classmethod
from_json(dct)¶
-