- class openfe.AlchemicalNetwork(edges: Iterable[Transformation] | None = None, nodes: Iterable[ChemicalSystem] | None = None, name: str | None = None)#
- property graph: MultiDiGraph#
A networkx representation of the AlchemicalNetwork
Nodes are represented as
ChemicalSystemobjects and directed edges are represented asTransformationobjects
- property edges: frozenset[Transformation]#
Network edges as a frozenset of
Transformationinstances.
- property nodes: frozenset[ChemicalSystem]#
Network nodes as a
frozensetofChemicalSysteminstances.
- classmethod from_graphml(str) Self#
Currently not implemented