From 3f6c849707dfaaf92a2402bfcdbd8032f6596a9e Mon Sep 17 00:00:00 2001 From: Maxime Chéramy Date: Mon, 6 Jul 2015 23:01:47 +0200 Subject: [PATCH] Caches: rename penalty arg to access_time. --- simso/core/Caches.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simso/core/Caches.py b/simso/core/Caches.py index dea5d42..8a75f36 100644 --- a/simso/core/Caches.py +++ b/simso/core/Caches.py @@ -14,8 +14,8 @@ class Cache(object): class Cache_LRU(Cache): - def __init__(self, name, identifier, size, associativity, penalty): - Cache.__init__(self, name, identifier, size, associativity, penalty) + def __init__(self, name, identifier, size, associativity, access_time): + Cache.__init__(self, name, identifier, size, associativity, access_time) self._groups = None def init(self): -- libgit2 0.26.0