Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
amdis
amdis-core
Merge requests
!44
Resize abstraction for matrices and vectors
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resize abstraction for matrices and vectors
feature/resize
into
master
Overview
1
Commits
3
Changes
4
Merged
Praetorius, Simon
requested to merge
feature/resize
into
master
5 years ago
Overview
1
Commits
3
Changes
1
Expand
1
0
Merge request reports
Compare
version 2
version 3
7ed79a4c
5 years ago
version 2
25ee4d63
5 years ago
version 1
b71abe4e
5 years ago
master (base)
and
version 3
latest version
f8825d0b
3 commits,
5 years ago
version 3
7ed79a4c
3 commits,
5 years ago
version 2
25ee4d63
2 commits,
5 years ago
version 1
b71abe4e
1 commit,
5 years ago
Show latest version
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
test/ResizeTest.cpp
+
1
−
2
Options
@@ -25,7 +25,7 @@ struct NotResizable {};
int
main
(
int
argc
,
char
**
argv
)
{
AMDiS
::
init
(
argc
,
argv
);
Environment
env
(
argc
,
argv
);
Vec1
vec1
;
Vec2
vec2
;
@@ -61,6 +61,5 @@ int main(int argc, char** argv)
static_assert
(
not
Concepts
::
VectorResizable_t
<
NotResizable
>::
value
,
""
);
static_assert
(
not
Concepts
::
MatrixResizable_t
<
NotResizable
>::
value
,
""
);
AMDiS
::
finalize
();
return
0
;
}
Loading