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
a0d59285
Commit
a0d59285
authored
Apr 04, 2018
by
Kirill Terekhov
Browse files
some fixes in containers.hpp
parent
f3967472
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/Headers/container.hpp
View file @
a0d59285
...
...
@@ -2759,7 +2759,7 @@ namespace INMOST
}
thread_private
(
const
thread_private
&
b
)
{
items
.
resize
(
omp_get_max_threads
);
items
.
resize
(
omp_get_max_threads
()
);
for
(
int
k
=
0
;
k
<
omp_get_max_threads
();
++
k
)
items
[
k
].
item
=
b
.
get
(
k
);
}
...
...
Source/Solver/solver_inner/solver_mlmptiluc/solver_mlmtiluc2.cpp
View file @
a0d59285
...
...
@@ -5,9 +5,9 @@
#include <sstream>
#include <deque>
#include <iomanip>
#define REPORT_ILU
//
#define REPORT_ILU
//#undef REPORT_ILU
#define REPORT_ILU_PROGRESS
//
#define REPORT_ILU_PROGRESS
#define REPORT_ILU_END
#define REPORT_ILU_SUMMARY
//#undef REPORT_ILU_PROGRESS
...
...
@@ -24,7 +24,7 @@ using namespace INMOST;
#define REORDER_RCM
//#define REORDER_NNZ
#if defined(USE_SOLVER_METIS)
#define REORDER_METIS_ND
//
#define REORDER_METIS_ND
#endif
#if defined(USE_SOLVER_MONDRIAAN)
//#define REORDER_MONDRIAAN
...
...
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