Skip to content
Snippets Groups Projects
Commit 6e9bd605 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[algorithm][Algorithm] Add loop_user type

This is a specific type for algorithm using loop as they have
additional constraints with regards to classic autonomous
algorithms.
parent 7e1eaa54
Branches
Tags
2 merge requests!281.6.x,!27Soft loop
...@@ -381,6 +381,7 @@ class Algorithm(object): ...@@ -381,6 +381,7 @@ class Algorithm(object):
SEQUENTIAL = 'sequential' SEQUENTIAL = 'sequential'
AUTONOMOUS = 'autonomous' AUTONOMOUS = 'autonomous'
LOOP = 'loop' LOOP = 'loop'
LOOP_USER = 'loop_user'
def __init__(self, prefix, name, dataformat_cache=None, library_cache=None): def __init__(self, prefix, name, dataformat_cache=None, library_cache=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment