Skip to content

Commit

Permalink
reneme: friendship -> frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
krmr73 committed Jun 12, 2023
1 parent 5b76a33 commit b7b9294
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/history2vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Params:
rho: float
nu: float
recentness: float
friendship: float
frequency: float
steps: int


Expand Down
4 changes: 2 additions & 2 deletions lib/run_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Params:
rho: float
nu: float
recentness: float
friendship: float
frequency: float
steps: int


Expand All @@ -24,7 +24,7 @@ def run_model(params: Params) -> List[Tuple[int, int]]:
"""
rho = int(params.rho)
nu = int(params.nu)
gene = Gene(rho, nu, params.recentness, params.friendship)
gene = Gene(rho, nu, params.recentness, params.frequency)
env = Environment(gene)
for _ in range(params.steps):
caller = env.get_caller()
Expand Down

0 comments on commit b7b9294

Please sign in to comment.