Hi,
Assume that I have two GenericVector objects, one that represents the solution found by FEniCS's solve(), and the other a solution interpolated to a similar space from an expression representing the closed-form solution. I'd like to find the norm of their difference in a C++ code. For example, I have u, and u0, both of type GenericVector, and would like to obtain the norm of u-u0. What should be the C++ syntax for achieving this?