From 0d3ee23db458dd02e0667d5ed750e26ba20f8b04 Mon Sep 17 00:00:00 2001 From: Martin Reuter Date: Sun, 15 Dec 2024 02:04:24 +0100 Subject: [PATCH] fix typo --- lapy/diffgeo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lapy/diffgeo.py b/lapy/diffgeo.py index 4abd0c9..d9518e9 100644 --- a/lapy/diffgeo.py +++ b/lapy/diffgeo.py @@ -367,7 +367,7 @@ def tria_compute_rotated_f(tria, vfunc): # div is the integrated divergence (so it is already B*div) fem.mass = sparse.eye(fem.stiffness.shape[0], dtype=vfunc.dtype) # since the solution is ill defined (addition of constant) - # we specify an arbitary boundary condition at a single vertex to + # we specify an arbitrary boundary condition at a single vertex to # remove that degree of freedom dtup = ( np.array([0]), np.array([0.0])) vf = fem.poisson(divf,dtup)