Skip to content

Commit

Permalink
Merge pull request #6 from CN-UPB/deepsource-fix-27d0a9aa
Browse files Browse the repository at this point in the history
Remove methods with unnecessary super delegation.
  • Loading branch information
Stefan Schneider authored Mar 16, 2021
2 parents bde6fb3 + 342d34f commit 4659302
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions deepcomp/agent/heuristics.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ class Heuristic3GPP(MultiAgent):
Agent that is always connected to at most one BS. Greedily chooses the BS with highest achievable data rate.
This is comparable to 3GPP LTE cell selection based on highest SINR (with a hysteresis threshold of 0)
"""
def __init__(self):
super().__init__()

def compute_action(self, obs, policy_id):
"""
Expand All @@ -38,8 +36,6 @@ def compute_action(self, obs, policy_id):

class FullCoMP(MultiAgent):
"""Agent that always greedily connects to all BS. I refer to this agent as 'FullCoMP' in the paper."""
def __init__(self):
super().__init__()

def compute_action(self, obs, policy_id):
"""
Expand Down

0 comments on commit 4659302

Please sign in to comment.