Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kirill Terekhov
INMOST
Commits
f16a9d90
Commit
f16a9d90
authored
Jan 03, 2017
by
Dmitry Bagaev
Browse files
Prec time k3 fix
parent
dbbef615
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
f16a9d90
.svn
Tests/solver_test001/matrices
SyncToy*
build*/
*
build*/
*.iml
...
...
Source/Solver/solver_k3biilu2/SolverK3BIILU2.cpp
View file @
f16a9d90
...
...
@@ -60,7 +60,6 @@ namespace INMOST {
}
void
SolverK3BIILU2
::
SetMatrix
(
Sparse
::
Matrix
&
A
,
bool
ModifiedPattern
,
bool
OldPreconditioner
)
{
double
time_start
=
Timer
();
bool
modified_pattern
=
ModifiedPattern
;
//~ if( A.comm != comm ) throw DifferentCommunicatorInSolver;
if
(
matrix_data
==
NULL
)
{
...
...
@@ -127,7 +126,7 @@ namespace INMOST {
}
MatrixFinalizeK3biilu2
(
matrix_data
);
SolverSetMatrixK3biilu2
(
solver_data
,
matrix_data
,
modified_pattern
,
OldPreconditioner
);
time_prec
=
Timer
()
-
time_start
;
time_prec
=
solver_data
->
dstat
[
7
]
;
}
bool
SolverK3BIILU2
::
Solve
(
INMOST
::
Sparse
::
Vector
&
RHS
,
INMOST
::
Sparse
::
Vector
&
SOL
)
{
...
...
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