Merge branch 'develop' into feature/eliminate_derived_array

This commit is contained in:
Fabian Joswig 2021-12-02 16:43:44 +00:00
commit 15dd10f19a
3 changed files with 71 additions and 59 deletions

View file

@ -32,6 +32,8 @@ class Covobs:
raise Exception('Covariance matrix has to be a square matrix!')
else:
raise Exception('Covariance matrix has to be a 2 dimensional square matrix!')
if '|' in name:
raise Exception("Covobs name must not contain replica separator '|'.")
self.name = name
if grad is None:
if pos is None: