7679f091df775b10e4b84657e3797555673b8bf4,smac/runhistory/runhistory.py,RunHistory,add,#RunHistory#Any#Any#Any#Any#Any#Any#Any#,30
Before Change
"""
d = self.Data(config, instance_id, seed, cost, time, status, additional_info)
self.data.append(d)
After Change
// TODO: replace str casting of config when we have something hashable
// as a config object
config_id = self.config_ids.get(str(config))
if config_id is None:
self._n_id += 1
self.config_ids[str(config)] = self._n_id
config_id = self.config_ids.get(str(config))
k = self.RunKey(config_id, instance_id, seed)
v = self.RunValue(cost, time, status, additional_info)
self.data[k] = v
In pattern: SUPERPATTERN
Frequency: 5
Non-data size: 26
Instances
Project Name: automl/SMAC3
Commit Name: 7679f091df775b10e4b84657e3797555673b8bf4
Time: 2015-11-20
Author: marius.rks@googlemail.com
File Name: smac/runhistory/runhistory.py
Class Name: RunHistory
Method Name: add
Project Name: automl/SMAC3
Commit Name: 7679f091df775b10e4b84657e3797555673b8bf4
Time: 2015-11-20
Author: marius.rks@googlemail.com
File Name: smac/runhistory/runhistory.py
Class Name: RunHistory
Method Name: add
Project Name: automl/SMAC3
Commit Name: 0acd29b078c08932e3e5a57f05a0fe2969680aa7
Time: 2015-11-19
Author: marius.rks@googlemail.com
File Name: smac/runhistory/runhistory.py
Class Name: RunHistory
Method Name: add
Project Name: automl/SMAC3
Commit Name: 7a7a2fbb0676b980bed4f295eecc5cde574dbb84
Time: 2015-11-19
Author: marius.rks@googlemail.com
File Name: smac/runhistory/runhistory.py
Class Name: RunHistory
Method Name: add
Project Name: automl/SMAC3
Commit Name: 688cc82c230ceaa50db7b3bac4191a2cb57c640e
Time: 2015-11-20
Author: marius.rks@googlemail.com
File Name: smac/runhistory/runhistory.py
Class Name: RunHistory
Method Name: add
Project Name: automl/SMAC3
Commit Name: b3ba7190b65ccf8de01cf0bafa3aea82c8fd8ba1
Time: 2015-11-20
Author: marius.rks@googlemail.com
File Name: smac/runhistory/runhistory.py
Class Name: RunHistory
Method Name: add