Commit e3b5179e authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

remove repetition in Experiment doc strings

parent 6833b906
...@@ -49,13 +49,13 @@ class Experiment(object): ...@@ -49,13 +49,13 @@ class Experiment(object):
self.timeout: tp.Optional[int] = None self.timeout: tp.Optional[int] = None
"""Timeout for experiment in seconds.""" """Timeout for experiment in seconds."""
self.checkpoint = False self.checkpoint = False
"""Whether to use checkpoints in experiment. """Whether to use checkpoints in the experiment.
Using this property we can, for example, speed up booting a host Using this property we can, for example, speed up booting a host
simulator by first running in a less accurate mode. Before we then start simulator by first running in a less accurate mode. Before we then start
the measurement we are interested in, a checkpoint is taken and the the measurement we are interested in, a checkpoint is taken, the
simulator shut down, a check point created, and finally restored in the simulator shut down and finally restored in the accurate mode using this
accurate mode using this checkpoint.""" checkpoint."""
self.no_simbricks = False self.no_simbricks = False
"""If `true`, no simbricks adapters are used in any of the """If `true`, no simbricks adapters are used in any of the
simulators.""" simulators."""
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment