scheme_adapters/polyfit_adapter/polyfit_adapter.py [272:277]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            for metric in self.metrics:
                name = metric.split(";")[0]
                command.append(str(self.workload_info[0][name]))
                command.append(str(value[0][name]))
            res = subprocess.check_output(command)
            score = str(res).split("'")[1][0:-2]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scheme_adapters/pso_adapter/pso_adapter.py [260:265]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            for metric in self.metrics:
                name = metric.split(";")[0]
                command.append(str(self.workload_info[0][name]))
                command.append(str(value[0][name]))
            res = subprocess.check_output(command)
            score =  str(res).split("'")[1][0:-2]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



