Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Merge requests
!204
Remove m_cell_global_index from Connectivity
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove m_cell_global_index from Connectivity
feature/loadbalancing
into
develop
Overview
0
Commits
30
Pipelines
0
Changes
1
Merged
Stéphane Del Pino
requested to merge
feature/loadbalancing
into
develop
1 month ago
Overview
0
Commits
30
Pipelines
0
Changes
1
Expand
now this information is computed when needed (load balance)
closes
#11 (closed)
0
0
Merge request reports
Viewing commit
c332cbfa
Prev
Next
Show latest version
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
c332cbfa
Fix typo in the documentation
· c332cbfa
Stéphane Del Pino
authored
1 month ago
doc/userdoc.org
+
5
−
5
Options
@@ -4503,15 +4503,15 @@ discrete function.
import mesh;
import scheme;
let m:mesh, m = cartesianMesh(0, [1,1], (10,10));
let m
1
:mesh, m
1
= cartesianMesh(0, [1,1], (10,10));
let f: R^2 -> R, x -> 2*x[0]+x[1];
let fh:Vh, fh = interpolate(m, P0(), f);
let fh:Vh, fh = interpolate(m
1
, P0(), f);
let m2: mesh, m2 = get_mesh(
sum
);
let m2: mesh, m2 = get_mesh(
fh
);
#+END_SRC
Observe that in this example the two variables refer to the
same exact
mesh. There is no duplication.
Observe that in this example the two variables
~m1~ and ~m2~
refer to the
same exact
mesh. There is no duplication.
***** ~load_balance: (Vh) -> (Vh)~
Loading