Open jrmaddison opened 1 year ago
Describe the bug Dual spaces compare as equal with associated primal spaces.
Steps to Reproduce
from firedrake import * mesh = UnitIntervalMesh(10) V = FunctionSpace(mesh, "Lagrange", 1) V_star = V.dual() assert bool(V == V_star) # Passes
Expected behavior Since the spaces differ, they should not compare as equal.
Error message No error.
Environment: Ubuntu 22.04
I have just fixed that in #3214
Reopening for now as the fix is not yet merged.
Describe the bug Dual spaces compare as equal with associated primal spaces.
Steps to Reproduce
Expected behavior Since the spaces differ, they should not compare as equal.
Error message No error.
Environment: Ubuntu 22.04