Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fa7a0fce authored by VIGNET Pierre's avatar VIGNET Pierre
Browse files

[lib] homogenization of attributes...

parent d261dd38
No related branches found
No related tags found
No related merge requests found
......@@ -216,8 +216,6 @@ class CLUnfolder(object):
__*_constraints: CLUnfolder attributes for unfolding and shift;
initialized from the query attributes.
:param dynamical_system: dynamical system in clause constraint form
:type dynamical_system: <CLDynSys>
"""
def __init__(self, dynamic_system, debug=False):
......
......@@ -221,7 +221,7 @@ class MCLAnalyser(object):
Attributes and default values:
:param dynamical_system: dynamical system in clause constraint form
:param dynamic_system: dynamical system in clause constraint form
:param unfolder: computation management: unfolding
:param reporter: reporter for generic error display
:param translator_opti: turn on optimizations for ANTLR translation
......@@ -231,7 +231,7 @@ class MCLAnalyser(object):
optimized MAC with a reduced the number of activated frontiers.
:key debug: (optional) Used to activate debug mode in the Unfolder
:type dynamical_system: None before loading a model / <CLDynSys>
:type dynamic_system: None before loading a model / <CLDynSys>
:type unfolder: None before loading a model / <CLUnfolder>
:type debug: False / <boolean>
:type reporter: <ErrorRep>
......@@ -256,9 +256,9 @@ class MCLAnalyser(object):
self.nb_sols_to_be_pruned = 10
@property
def dynamical_system(self):
def dynamic_system(self):
"""Return the CLDynSys object of the current unfolder"""
return self.unfolder.dynamical_system
return self.unfolder.dynamic_system
## Building MCLAnalyser ####################################################
......
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