Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dynare
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
122
Issues
122
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dynare
dynare
Commits
aa58f7bd
Commit
aa58f7bd
authored
Dec 17, 2010
by
Sébastien Villemot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Estimation DLL, QRDecomposition: removed unused data members
parent
b1f5c48f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
mex/sources/estimation/libmat/QRDecomposition.cc
mex/sources/estimation/libmat/QRDecomposition.cc
+1
-1
mex/sources/estimation/libmat/QRDecomposition.hh
mex/sources/estimation/libmat/QRDecomposition.hh
+0
-2
No files found.
mex/sources/estimation/libmat/QRDecomposition.cc
View file @
aa58f7bd
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
QRDecomposition
::
QRDecomposition
(
size_t
rows_arg
,
size_t
cols_arg
,
size_t
cols2_arg
)
:
QRDecomposition
::
QRDecomposition
(
size_t
rows_arg
,
size_t
cols_arg
,
size_t
cols2_arg
)
:
rows
(
rows_arg
),
cols
(
cols_arg
),
mind
(
std
::
min
(
rows
,
cols
)),
cols2
(
cols2_arg
),
rows
(
rows_arg
),
cols
(
cols_arg
),
mind
(
std
::
min
(
rows
,
cols
)),
cols2
(
cols2_arg
),
lwork
(
rows
*
cols
),
lwork2
(
cols2
)
,
H
(
rows
),
Q2
(
rows
),
v
(
rows
)
lwork
(
rows
*
cols
),
lwork2
(
cols2
)
{
{
work
=
new
double
[
lwork
];
work
=
new
double
[
lwork
];
work2
=
new
double
[
lwork2
];
work2
=
new
double
[
lwork2
];
...
...
mex/sources/estimation/libmat/QRDecomposition.hh
View file @
aa58f7bd
...
@@ -33,8 +33,6 @@ private:
...
@@ -33,8 +33,6 @@ private:
const
size_t
cols2
;
const
size_t
cols2
;
lapack_int
lwork
,
lwork2
;
lapack_int
lwork
,
lwork2
;
double
*
work
,
*
work2
,
*
tau
;
double
*
work
,
*
work2
,
*
tau
;
Matrix
H
,
Q2
;
Vector
v
;
public:
public:
/*!
/*!
\todo Replace heuristic choice for workspace size by a query to determine the optimal size
\todo Replace heuristic choice for workspace size by a query to determine the optimal size
...
...
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