Source code for misc.blank_graph_plugin

from firewheel.control.experiment_graph import AbstractPlugin, ExperimentGraph


[docs] class BlankGraph(AbstractPlugin): """Create the experiment graph for all future plugins."""
[docs] def run(self): """ Create a new instance of :py:class:`firewheel.control.experiment_graph.ExperimentGraph` and make it accessible by storing it in ``self.g``. """ self.g = ExperimentGraph()