Skip to content
Snippets Groups Projects
Commit 119c3365 authored by Rigdon's avatar Rigdon
Browse files

Added average algorithm into the initialization of algorithms

parent b6f32cb0
No related branches found
No related tags found
No related merge requests found
...@@ -11,12 +11,14 @@ from .AdjustedAlgorithm import AdjustedAlgorithm ...@@ -11,12 +11,14 @@ from .AdjustedAlgorithm import AdjustedAlgorithm
from .DeltaFAlgorithm import DeltaFAlgorithm from .DeltaFAlgorithm import DeltaFAlgorithm
from .SqDistAlgorithm import SqDistAlgorithm from .SqDistAlgorithm import SqDistAlgorithm
from .XYZAlgorithm import XYZAlgorithm from .XYZAlgorithm import XYZAlgorithm
from .AverageAlgorithm import AverageAlgorithm
# algorithms is used by Controller to auto generate arguments # algorithms is used by Controller to auto generate arguments
algorithms = { algorithms = {
'identity': Algorithm, 'identity': Algorithm,
'adjusted': AdjustedAlgorithm, 'adjusted': AdjustedAlgorithm,
'average': AverageAlgorithm,
'deltaf': DeltaFAlgorithm, 'deltaf': DeltaFAlgorithm,
'sqdist': SqDistAlgorithm, 'sqdist': SqDistAlgorithm,
'xyz': XYZAlgorithm 'xyz': XYZAlgorithm
...@@ -29,6 +31,7 @@ __all__ = [ ...@@ -29,6 +31,7 @@ __all__ = [
'AlgorithmException', 'AlgorithmException',
# algorithms # algorithms
'AdjustedAlgorithm', 'AdjustedAlgorithm',
'AverageAlgorithm',
'DeltaFAlgorithm', 'DeltaFAlgorithm',
'SqDistAlgorithm', 'SqDistAlgorithm',
'XYZAlgorithm' 'XYZAlgorithm'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment