Added root path back

This commit is contained in:
Alan Saul 2013-02-08 13:49:09 +00:00
parent 633bfde996
commit 04c716c3d2
2 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ class model(parameterised):
def get(self,name, return_names=False):
"""
Get a model parameter by name. The name is applied as a regular expression and all parameters that match that regular expression are returned.
Get a model parameter by name. The name is applied as a regular expression and all parameters that match that regular expression are returned.
"""
matches = self.grep_param_names(name)
if len(matches):
@ -108,7 +108,7 @@ class model(parameterised):
def get_gradient(self,name, return_names=False):
"""
Get model gradient(s) by name. The name is applied as a regular expression and all parameters that match that regular expression are returned.
Get model gradient(s) by name. The name is applied as a regular expression and all parameters that match that regular expression are returned.
"""
matches = self.grep_param_names(name)
if len(matches):