Skip to content
Snippets Groups Projects
Commit c332cbfa authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix typo in the documentation

parent f85cbb87
Branches
No related tags found
1 merge request!204Remove m_cell_global_index from Connectivity
...@@ -4503,15 +4503,15 @@ discrete function. ...@@ -4503,15 +4503,15 @@ discrete function.
import mesh; import mesh;
import scheme; import scheme;
let m:mesh, m = cartesianMesh(0, [1,1], (10,10)); let m1:mesh, m1 = cartesianMesh(0, [1,1], (10,10));
let f: R^2 -> R, x -> 2*x[0]+x[1]; let f: R^2 -> R, x -> 2*x[0]+x[1];
let fh:Vh, fh = interpolate(m, P0(), f); let fh:Vh, fh = interpolate(m1, P0(), f);
let m2: mesh, m2 = get_mesh(sum); let m2: mesh, m2 = get_mesh(fh);
#+END_SRC #+END_SRC
Observe that in this example the two variables refer to the same exact Observe that in this example the two variables ~m1~ and ~m2~ refer to the
mesh. There is no duplication. same exact mesh. There is no duplication.
***** ~load_balance: (Vh) -> (Vh)~ ***** ~load_balance: (Vh) -> (Vh)~
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment