Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GATB
gatb-core
Commits
85e64814
Commit
85e64814
authored
Dec 14, 2015
by
Rayan Chikhi
Browse files
minor doc
parent
6a2e5a30
Changes
2
Hide whitespace changes
Inline
Side-by-side
gatb-core/src/gatb/debruijn/impl/NodesDeleter.hpp
View file @
85e64814
...
...
@@ -59,7 +59,9 @@ class NodesDeleter
/* use explicit set of nodes as long as we don't have more than 10 M nodes ok?
* else resort to bit array
* 10M nodes, assuming 128 bytes per nodes (generous), is 1 gig.
* for k=21 it's 24 bytes
* for k=21 it's 24 bytes.
* so, WARNING: enabling this feature uses more memory.
* todo: someday, introduce a --fast parameter that uses a bit more memory but does optimizations like this
*/
//std::cout << "sizeof node: " << sizeof(Node) << std::endl;
useList
=
true
;
...
...
gatb-core/src/gatb/debruijn/impl/Simplifications.cpp
View file @
85e64814
...
...
@@ -921,11 +921,11 @@ unsigned long Simplifications<Node,Edge,GraphDataVariant>::removeBulges()
if
(
_verbose
)
{
TIME
(
cout
<<
"
T
imings: "
<<
timeAll
/
unit
<<
" CPUsecs total."
<<
endl
);
TIME
(
cout
<<
" "
<<
timeSimplePath
/
unit
<<
" CPUsecs simple path traversal."
<<
endl
);
TIME
(
cout
<<
" "
<<
timePathFinding
/
unit
<<
"(/"
<<
timePathFinding
/
unit
<<
") CPUsecs path-finding(/failed). Longest: "
<<
timeLongestFailure
/
(
unit
/
1000
)
<<
" CPUmillisecs (depth "
<<
longestFailureDepth
<<
")."
<<
endl
);
TIME
(
cout
<<
" "
<<
timePost
/
unit
<<
" CPUsecs topological bulge processing, "
<<
timeDelete
/
unit
<<
" CPUsecs nodes deletion."
<<
endl
);
TIME
(
cout
<<
" "
<<
timeVarious
/
unit
<<
" CPUsecs various overhead."
<<
endl
);
TIME
(
cout
<<
"
Bulges t
imings: "
<<
timeAll
/
unit
<<
" CPUsecs total."
<<
endl
);
TIME
(
cout
<<
"
"
<<
timeSimplePath
/
unit
<<
" CPUsecs simple path traversal."
<<
endl
);
TIME
(
cout
<<
"
"
<<
timePathFinding
/
unit
<<
"(/"
<<
timePathFinding
/
unit
<<
") CPUsecs path-finding(/failed). Longest: "
<<
timeLongestFailure
/
(
unit
/
1000
)
<<
" CPUmillisecs (depth "
<<
longestFailureDepth
<<
")."
<<
endl
);
TIME
(
cout
<<
"
"
<<
timePost
/
unit
<<
" CPUsecs topological bulge processing, "
<<
timeDelete
/
unit
<<
" CPUsecs nodes deletion."
<<
endl
);
TIME
(
cout
<<
"
"
<<
timeVarious
/
unit
<<
" CPUsecs various overhead."
<<
endl
);
}
return
nbBulgesRemoved
;
...
...
@@ -1129,7 +1129,7 @@ unsigned long Simplifications<Node,Edge,GraphDataVariant>::removeErroneousConnec
double
unit
=
1000000000
;
cout
.
setf
(
ios_base
::
fixed
);
cout
.
precision
(
1
);
TIME
(
cout
<<
"Timings: "
<<
timeAll
/
unit
<<
" CPUsecs total."
<<
endl
);
TIME
(
cout
<<
"
EC
Timings: "
<<
timeAll
/
unit
<<
" CPUsecs total."
<<
endl
);
}
return
nbECRemoved
;
...
...
Write
Preview
Supports
Markdown
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