Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
5caf02f6
Commit
5caf02f6
authored
Nov 30, 2020
by
jannick.wolters
Browse files
updated all external libs to the latest stable version, fixing the previous mesh error
parent
79c6d288
Changes
5
Hide whitespace changes
Inline
Side-by-side
Catch2
@
ff349a50
Compare
255aa5f2
...
ff349a50
Subproject commit
255aa5f2afe1a622c97422f65ace6ca915be0d8d
Subproject commit
ff349a50bfc6214b4081f4ca63c7de35e2162f60
blaze
@
0380370f
Subproject commit
965fdd13a3e87c7c398054d39add0c14fe3779d
e
Subproject commit
0380370f0626de2ad0ec7ea815803e22bbf6b42
e
parmetis
@
263c94a2
Compare
fba1fa6b
...
263c94a2
Subproject commit
fba1fa6b493d5030d2adfd4f04c98ff75bd5b8cf
Subproject commit
263c94a262be616484b0bbeb33a6677411f25fbb
spdlog
@
cbe94486
Compare
cca004ef
...
cbe94486
Subproject commit c
ca004efe4e66136a5f9f37e007d28a23bb729e0
Subproject commit c
be9448650176797739dbab13961ef4c07f4290f
code/src/common/mesh.cpp
View file @
5caf02f6
...
@@ -51,7 +51,7 @@ void Mesh::ComputeConnectivity() {
...
@@ -51,7 +51,7 @@ void Mesh::ComputeConnectivity() {
std
::
sort
(
sortedBoundaries
[
i
].
begin
(),
sortedBoundaries
[
i
].
end
()
);
std
::
sort
(
sortedBoundaries
[
i
].
begin
(),
sortedBoundaries
[
i
].
end
()
);
}
}
blaze
::
CompressedMatrix
<
unsigned
>
connMat
(
_numCells
,
_numNodes
);
blaze
::
CompressedMatrix
<
bool
>
connMat
(
_numCells
,
_numNodes
);
for
(
unsigned
i
=
mpiCellStart
;
i
<
mpiCellEnd
;
++
i
)
{
for
(
unsigned
i
=
mpiCellStart
;
i
<
mpiCellEnd
;
++
i
)
{
for
(
auto
j
:
_cells
[
i
]
)
connMat
.
set
(
i
,
j
,
true
);
for
(
auto
j
:
_cells
[
i
]
)
connMat
.
set
(
i
,
j
,
true
);
}
}
...
...
jannick.wolters
@jm2154
mentioned in commit
78838b40
·
Apr 30, 2021
mentioned in commit
78838b40
mentioned in commit 78838b404786a82ba0fd7da22631886455cdff08
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment