aboutsummaryrefslogtreecommitdiff
path: root/lru.py
diff options
context:
space:
mode:
authorAdam NAILI2018-05-01 23:21:14 +0200
committerAdam NAILI2018-05-01 23:21:14 +0200
commit1248a6594974d28c32b733d768ea60fb3fbe490d (patch)
tree3eef3200b418a1e2597c546e94e84e92aca3cd7a /lru.py
parent853cce9bb24aa6e699ea3906be1e4979c4e57c46 (diff)
downloadmempager-simulator-master.tar.gz
Removing a forgotten debug print in lru.py and adding Mr abbreviation in reportHEADmaster
Diffstat (limited to 'lru.py')
-rw-r--r--lru.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lru.py b/lru.py
index 53b122a..76af4c4 100644
--- a/lru.py
+++ b/lru.py
@@ -54,9 +54,6 @@ class LruPaginator:
54 54
55 def _put_main(self, page): 55 def _put_main(self, page):
56 self._check_where_to_replace() 56 self._check_where_to_replace()
57 print("Cursor:")
58 print(self._main_cursor)
59 print("")
60 overwritten = self.mem.main[self._main_cursor] 57 overwritten = self.mem.main[self._main_cursor]
61 self.mem.main[self._main_cursor] = page 58 self.mem.main[self._main_cursor] = page
62 self._update_check_table(page) 59 self._update_check_table(page)