Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Core Modules
dune-common
Merge requests
!51
Remove obsolete TODO
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove obsolete TODO
pipping/dune-common:feature/remove-obsolete-todo
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Elias Pipping
requested to merge
pipping/dune-common:feature/remove-obsolete-todo
into
master
9 years ago
Overview
0
Commits
1
Pipelines
0
Changes
-
Expand
The issue mentioned in the TODO was resolved in
0fa536e5
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
f1f55ab8
1 commit,
9 years ago
+
0
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/common/test/boundscheckingmvtest.cc
+
0
−
7
Options
@@ -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
);
Loading