Rename efficiency to efficacy
Some Python class and packages need to be renamed for a better compliance with the shared Terminology which provides a better understanding of Watcher objects and components by every contributor. This patchset is there to change efficiency to efficacy Partially implements: blueprint glossary-related-refactoring Change-Id: I4c84192d49a147e0fd406da35e2805143b902331
This commit is contained in:
@@ -25,15 +25,15 @@ class Solution(object):
|
||||
def __init__(self):
|
||||
self._origin = None
|
||||
self._model = None
|
||||
self._efficiency = 0
|
||||
self._efficacy = 0
|
||||
|
||||
@property
|
||||
def efficiency(self):
|
||||
return self._efficiency
|
||||
def efficacy(self):
|
||||
return self._efficacy
|
||||
|
||||
@efficiency.setter
|
||||
def efficiency(self, e):
|
||||
self._efficiency = e
|
||||
@efficacy.setter
|
||||
def efficacy(self, e):
|
||||
self._efficacy = e
|
||||
|
||||
@property
|
||||
def model(self):
|
||||
|
||||
Reference in New Issue
Block a user