Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
D
dune-amdis
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1
    • Issues 1
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 2
    • Merge Requests 2
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Praetorius, Simon
  • dune-amdis
  • Merge Requests
  • !81

Merged
Opened Feb 12, 2019 by Müller, Felix@s5272799Developer

Move calls to basis.update inbetween adapt and postAdapt calls

  • Overview 2
  • Commits 5
  • Pipelines 4
  • Changes 3

This MR fixes the issue of late calls to update in DOFVectorTest and ProblemStat.inc

basis.update(gv) needs to be called after a change to the grid and before the basis is used again. Since GridTransferManager::adapt() handles calls to [pre/post]adapt(), it is required to have access to non-const instances of the involved bases and to call update on them.

Note: branch feature/global_refine currently uses calls to

    adapted |= GridTransferManager::adapt(*grid_);
    globalBasis_->update(gridView());

With this MR those need to be replaced by

    adapted |= GridTransferManager::adapt(*grid_, *globalBasis_);
Assignee
Assign to
Reviewer
Request review from
Release 0.2
Milestone
Release 0.2 (Past due)
Assign milestone
Time tracking
Reference: spraetor/dune-amdis!81
Source branch: issue/gridtransfer_basis_update