scheme_adapters/polyfit_adapter/polyfit_adapter.py [325:332]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            elif "age" in key:
                new_scheme += str(round(scheme[ind])) + "us" + "\t"
            elif "size" in key:
                new_scheme += str(round(scheme[ind])) + "B" + "\t"
            else:
                new_scheme += str(round(scheme[ind])) + "\t"
            ind += 1
        new_scheme += self.ranges["action"]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scheme_adapters/pso_adapter/pso_adapter.py [275:282]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            elif "age" in key:
                new_scheme +=  str(round(scheme[ind])) + "us" + "\t"
            elif "size" in key:
                new_scheme += str(round(scheme[ind])) + "B" + "\t"
            else:
                new_scheme += str(round(scheme[ind])) + "\t"
            ind += 1
        new_scheme += self.ranges["action"]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



