Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
1c191c73
Commit
1c191c73
authored
11 years ago
by
Sebastien Blaise
Browse files
Options
Downloads
Patches
Plain Diff
lu factorization: adding pivot indices as parameter
parent
7b0293ba
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Numeric/fullMatrix.cpp
+6
-8
6 additions, 8 deletions
Numeric/fullMatrix.cpp
Numeric/fullMatrix.h
+2
-2
2 additions, 2 deletions
Numeric/fullMatrix.h
with
8 additions
and
10 deletions
Numeric/fullMatrix.cpp
+
6
−
8
View file @
1c191c73
...
@@ -290,24 +290,22 @@ bool fullMatrix<double>::luSolve(const fullVector<double> &rhs, fullVector<doubl
...
@@ -290,24 +290,22 @@ bool fullMatrix<double>::luSolve(const fullVector<double> &rhs, fullVector<doubl
}
}
template
<
>
template
<
>
bool
fullMatrix
<
double
>::
luFactor
()
bool
fullMatrix
<
double
>::
luFactor
(
fullVector
<
int
>
&
ipiv
)
{
{
int
M
=
size1
(),
N
=
size2
(),
lda
=
size1
(),
info
;
int
M
=
size1
(),
N
=
size2
(),
lda
=
size1
(),
info
;
int
*
ipiv
=
new
int
[
std
::
min
(
M
,
N
)];
ipiv
.
resize
(
std
::
min
(
M
,
N
));
F77NAME
(
dgetrf
)(
&
M
,
&
N
,
_data
,
&
lda
,
ipiv
,
&
info
);
F77NAME
(
dgetrf
)(
&
M
,
&
N
,
_data
,
&
lda
,
&
ipiv
(
0
),
&
info
);
delete
[]
ipiv
;
if
(
info
==
0
)
return
true
;
if
(
info
==
0
)
return
true
;
return
false
;
return
false
;
}
}
template
<
>
template
<
>
bool
fullMatrix
<
double
>::
luSubstitute
(
const
fullVector
<
double
>
&
rhs
,
fullVector
<
double
>
&
result
)
bool
fullMatrix
<
double
>::
luSubstitute
(
const
fullVector
<
double
>
&
rhs
,
fullVector
<
int
>
&
ipiv
,
fullVector
<
double
>
&
result
)
{
{
int
N
=
size1
(),
nrhs
=
1
,
lda
=
N
,
ldb
=
N
,
info
;
int
N
=
size1
(),
nrhs
=
1
,
lda
=
N
,
ldb
=
N
,
info
;
int
*
ipiv
=
new
int
[
N
]
;
char
trans
=
'N'
;
for
(
int
i
=
0
;
i
<
N
;
i
++
)
result
(
i
)
=
rhs
(
i
);
for
(
int
i
=
0
;
i
<
N
;
i
++
)
result
(
i
)
=
rhs
(
i
);
F77NAME
(
dgetrs
)(
"N"
,
&
N
,
&
nrhs
,
_data
,
&
lda
,
ipiv
,
result
.
_data
,
&
ldb
,
&
info
);
F77NAME
(
dgetrs
)(
&
trans
,
&
N
,
&
nrhs
,
_data
,
&
lda
,
&
ipiv
(
0
),
result
.
_data
,
&
ldb
,
&
info
);
delete
[]
ipiv
;
if
(
info
==
0
)
return
true
;
if
(
info
==
0
)
return
true
;
return
false
;
return
false
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Numeric/fullMatrix.h
+
2
−
2
View file @
1c191c73
...
@@ -686,7 +686,7 @@ class fullMatrix
...
@@ -686,7 +686,7 @@ class fullMatrix
}
}
#endif
#endif
;
;
bool
luFactor
()
bool
luFactor
(
fullVector
<
int
>
&
ipiv
)
#if !defined(HAVE_LAPACK)
#if !defined(HAVE_LAPACK)
{
{
Msg
::
Error
(
"LU factorization requires LAPACK"
);
Msg
::
Error
(
"LU factorization requires LAPACK"
);
...
@@ -694,7 +694,7 @@ class fullMatrix
...
@@ -694,7 +694,7 @@ class fullMatrix
}
}
#endif
#endif
;
;
bool
luSubstitute
(
const
fullVector
<
double
>
&
rhs
,
fullVector
<
double
>
&
result
)
bool
luSubstitute
(
const
fullVector
<
scalar
>
&
rhs
,
fullVector
<
int
>
&
ipiv
,
fullVector
<
scalar
>
&
result
)
#if !defined(HAVE_LAPACK)
#if !defined(HAVE_LAPACK)
{
{
Msg
::
Error
(
"LU substitution requires LAPACK"
);
Msg
::
Error
(
"LU substitution requires LAPACK"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment