Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dune-common
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
42
Issues
42
List
Boards
Labels
Milestones
Merge Requests
24
Merge Requests
24
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Core Modules
dune-common
Commits
f1f55ab8
Commit
f1f55ab8
authored
Feb 19, 2016
by
Elias Pipping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete TODO
parent
24724433
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
dune/common/test/boundscheckingmvtest.cc
dune/common/test/boundscheckingmvtest.cc
+0
-7
No files found.
dune/common/test/boundscheckingmvtest.cc
View file @
f1f55ab8
...
...
@@ -332,9 +332,6 @@ int main() try {
// right multiplication: None-square Matrix argument
try
{
// TODO: This leads to a segfault
// Dune::FieldMatrix<double, 2, 3> A = {{1, 2, 3}, {10, 20, 30}};
// Dune::FieldMatrix<double, 3, 2> const B = {{1, 2}, {10, 20}, {100, 200}};
Dune
::
DynamicMatrix
<
double
>
A
(
2
,
3
,
5
);
Dune
::
DynamicMatrix
<
double
>
const
B
(
3
,
2
,
5
);
A
.
rightmultiply
(
B
);
...
...
@@ -347,10 +344,6 @@ int main() try {
}
// right multiplication: Incorrect number of rows
try
{
// TODO: This leads to a segfault
// Dune::FieldMatrix<double, 2, 2> A = {{1, 2}, {10, 20}};
// Dune::FieldMatrix<double, 3, 3> const B = {
// {1, 2, 3}, {10, 20, 30}, {100, 200, 300}};
Dune
::
DynamicMatrix
<
double
>
A
(
2
,
2
,
5
);
Dune
::
DynamicMatrix
<
double
>
const
B
(
3
,
3
,
5
);
A
.
rightmultiply
(
B
);
...
...
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