scheme_adapters/polyfit_adapter/cache.py [54:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data[key] = new_value
            cache[key] = [num + 1, data]
        else:
            cache[key] = [1, data]
        with open(self.path, 'wb') as pkl_file:
            pickle.dump(cache, pkl_file, protocol=pickle.HIGHEST_PROTOCOL)

    def get(self, scheme):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scheme_adapters/pso_adapter/cache.py [52:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                data[key] = new_value
            cache[key] = [num + 1, data]
        else:
            cache[key] = [1, data]
        with open(self.path, 'wb') as pkl_file:
            pickle.dump(cache, pkl_file, protocol=pickle.HIGHEST_PROTOCOL)

    def get(self, scheme):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



