Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
932dc070
Commit
932dc070
authored
3 years ago
by
Kirill Terekhov
Browse files
Options
Download
Email Patches
Plain Diff
Update solver_mlmtiluc2.cpp
parent
93b38dc2
master
Pipeline
#283
passed with stages
in 7 minutes and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Solver/solver_inner/solver_mlmptiluc/solver_mlmtiluc2.cpp
+6
-6
...Solver/solver_inner/solver_mlmptiluc/solver_mlmtiluc2.cpp
with
6 additions
and
6 deletions
+6
-6
Source/Solver/solver_inner/solver_mlmptiluc/solver_mlmtiluc2.cpp
View file @
932dc070
...
...
@@ -32,13 +32,13 @@ using namespace INMOST;
//#define REORDER_MONDRIAAN
#endif
static
int
run_nd
=
2
;
//1 - unsymmetric dissection before mpt, 2 - symmetric dissection after mpt
static
int
run_nd
=
0
;
//1 - unsymmetric dissection before mpt, 2 - symmetric dissection after mpt
static
bool
run_mpt
=
true
;
static
bool
reorder_b
=
true
;
static
bool
rescale_b
=
true
;
static
bool
allow_pivot
=
true
;
static
bool
print_mem
=
false
;
static
bool
show_summary
=
tru
e
;
static
bool
show_summary
=
fals
e
;
const
INMOST_DATA_ENUM_TYPE
UNDEF
=
ENUMUNDEF
,
EOL
=
ENUMUNDEF
-
1
;
...
...
@@ -3898,7 +3898,7 @@ const double apert = 1.0e-8;
if
(
verbosity
>
1
&&
print_mem
)
std
::
cout
<<
__FILE__
<<
":"
<<
__LINE__
<<
" mem "
<<
getCurrentRSS
()
<<
" peak "
<<
getPeakRSS
()
<<
std
::
endl
;
if
(
tru
e
)
if
(
fals
e
)
{
DumpMatrix
(
A_Address
,
A_Entries
,
wbeg
,
wend
,
"A_nd"
+
to_string
(
level_size
.
size
())
+
".mtx"
);
std
::
ofstream
file
(
"blocks_nd"
+
to_string
(
level_size
.
size
())
+
".txt"
);
...
...
@@ -4217,7 +4217,7 @@ const double apert = 1.0e-8;
if
(
verbosity
>
1
)
std
::
cout
<<
"Time "
<<
tlocal
<<
"
\n
"
;
if
(
tru
e
)
if
(
fals
e
)
{
DumpMatrix
(
A_Address
,
A_Entries
,
wbeg
,
wend
,
"A_mt"
+
to_string
(
level_size
.
size
())
+
".mtx"
);
std
::
ofstream
file
(
"blocks_mt"
+
to_string
(
level_size
.
size
())
+
".txt"
);
...
...
@@ -4270,7 +4270,7 @@ const double apert = 1.0e-8;
if
(
verbosity
>
1
&&
print_mem
)
std
::
cout
<<
__FILE__
<<
":"
<<
__LINE__
<<
" mem "
<<
getCurrentRSS
()
<<
" peak "
<<
getPeakRSS
()
<<
std
::
endl
;
if
(
tru
e
)
if
(
fals
e
)
{
for
(
size_t
q
=
0
;
q
<
blocks
.
size
();
++
q
)
if
(
blocks
[
q
].
separator
)
{
...
...
@@ -4400,7 +4400,7 @@ const double apert = 1.0e-8;
if
(
verbosity
>
1
&&
print_mem
)
std
::
cout
<<
__FILE__
<<
":"
<<
__LINE__
<<
" mem "
<<
getCurrentRSS
()
<<
" peak "
<<
getPeakRSS
()
<<
std
::
endl
;
if
(
tru
e
)
if
(
fals
e
)
{
for
(
size_t
q
=
0
;
q
<
blocks
.
size
();
++
q
)
if
(
blocks
[
q
].
separator
)
{
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help