Skip to content

Commit

Permalink
cov
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudon committed Nov 15, 2023
1 parent 65d2094 commit 558584a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pygenstability/constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def prepare(self, **kwargs):
degrees_abs = np.array(abs(self.graph).sum(1)).flatten()
laplacian = sp.diags(degrees_abs) - self.graph

if self.exp_comp_mode == "spectral":
if self.exp_comp_mode == "spectral": # pragma: no cover
self.spectral_decomp = _compute_spectral_decomp(laplacian)
if self.exp_comp_mode == "expm":
self.partial_quality_matrix = laplacian
Expand Down

0 comments on commit 558584a

Please sign in to comment.