Merge modifications for more separate backend functions #69

Open
kscheidecker wants to merge 39 commits from backend/micro-services-restructuring into main
Showing only changes of commit 510aabcb0a - Show all commits

View File

@@ -22,7 +22,6 @@ class LandmarkManager:
church_coeff: float # coeff to adjsut score of churches
nature_coeff: float # coeff to adjust score of parks
overall_coeff: float # coeff to adjust weight of tags
# n_important: int # number of important landmarks to consider
kscheidecker marked this conversation as resolved Outdated

Be brave! Delete it

Be brave! Delete it

Removed in commit 510aabcb0a

Removed in commit [510aabcb0a](https://git.kluster.moll.re/anydev/anyway/commit/510aabcb0a423b38114101a890aad87dc9417934)
def __init__(self) -> None:
@@ -41,7 +40,6 @@ class LandmarkManager:
self.wikipedia_bonus = parameters['wikipedia_bonus']
self.viewpoint_bonus = parameters['viewpoint_bonus']
self.pay_bonus = parameters['pay_bonus']
# self.n_important = parameters['N_important']
with OPTIMIZER_PARAMETERS_PATH.open('r') as f:
parameters = yaml.safe_load(f)