File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 88
99class Collector :
1010 """
11- Collector class for retrieving data from different conditions in the
11+ Collector class for retrieving data from different conditions in the
1212 problem.
1313 """
1414
1515 def __init__ (self , problem ):
1616 """
1717 Initialize the Collector class, by creating a hook between the collector
18- and the problem and initializing the data collections (dictionary where
18+ and the problem and initializing the data collections (dictionary where
1919 data will be stored).
2020
2121 :param AbstractProblem problem: The problem to collect data from.
@@ -114,7 +114,7 @@ def store_sample_domains(self):
114114 Store inside data collections the sampled data of the problem. These
115115 comes from the conditions that require sampling.
116116 """
117-
117+
118118 for condition_name in self .problem .conditions :
119119 condition = self .problem .conditions [condition_name ]
120120 if not hasattr (condition , "domain" ):
You can’t perform that action at this time.
0 commit comments