-
Notifications
You must be signed in to change notification settings - Fork 848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contiguous storage of CPoint(s) #966
Merged
Merged
Changes from 19 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
31000a6
re-write CPoint for contiguous storage
pcarruscag b9b609c
first auto pass
pcarruscag e5419ba
second auto pass
pcarruscag fc6e88d
Common compiles (with todos)
pcarruscag b413e0d
address the TODO's
pcarruscag 80551a2
SU2_CFD compiles
pcarruscag 87c5ba9
cgns fixes
pcarruscag 0cbc58e
cleanup (still not going to work)
pcarruscag fb4224c
fix the segfaults (hopefully)
pcarruscag ab64512
Merge branch 'contiguous_cedge' into contiguous_cpoint
pcarruscag 31e9148
fix for DG problems
pcarruscag 047d1f2
make some methods of CPoint operate on entire set
pcarruscag 7bf5e2e
Merge remote-tracking branch 'upstream/develop' into contiguous_cpoint
pcarruscag fd6fe1a
contiguous storage of adjacency info in CPoint
pcarruscag 4a629c5
fix and cleanup
pcarruscag 9338faf
sort Point adjacency, cleanup GriVelGrad methods
pcarruscag 6830c09
add some hybrid parallel to easy geometry preprocessing methods, clea…
pcarruscag d74f0f8
make code factor happy
pcarruscag 394dbd2
revert sorting of points
pcarruscag eccac75
fine tune what structures of CPoint are allocated for different uses
pcarruscag 41b36c9
Merge branch 'multigrid_tweaks' into cpoint_and_mg
pcarruscag 133098d
Merge branch 'multigrid_tweaks' into cpoint_and_mg
pcarruscag 7b53c2f
Merge branch 'multigrid_tweaks' into cpoint_and_mg
pcarruscag 6182c97
Merge branch 'multigrid_tweaks' into cpoint_and_mg
pcarruscag dc63f1e
Merge branch 'multigrid_tweaks' into cpoint_and_mg
pcarruscag 2577b07
Merge remote-tracking branch 'upstream/develop' into contiguous_cpoint
pcarruscag 5e509c8
experiment on adjacency sorting
pcarruscag 26ffc6f
fix compilation
pcarruscag 016b482
fix for MSH
pcarruscag c1da478
give up on the sorted point idea, cleanup RCM ordering
pcarruscag 9d5caec
try to put the residuals back... more cleanup...
pcarruscag 165ffa8
Merge branch 'develop' into contiguous_cpoint
pcarruscag 5418396
use stable_sort trying to avoid one residual change
pcarruscag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -799,7 +799,7 @@ class CPhysicalGeometry final : public CGeometry { | |
*/ | ||
void SetWallDistance(su2double val) override { | ||
for (unsigned long iPoint = 0; iPoint < GetnPoint(); iPoint++){ | ||
node[iPoint]->SetWall_Distance(val); | ||
nodes->SetWall_Distance(iPoint, val); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Usual change no 2. |
||
} | ||
} | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usual change no 1