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:
Jean-Emile DARTOIS
2015-12-04 19:11:34 +01:00
parent 7710b1670e
commit 454f70a19f
3 changed files with 21 additions and 21 deletions

View File

@@ -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):