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
code
pfabric
Commits
08b26b1a
Commit
08b26b1a
authored
Nov 06, 2018
by
Constantin Pohl
Browse files
Small fix in WindowTest & Stats
parent
ffa14c9b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/dsl/Stats.hpp
View file @
08b26b1a
...
...
@@ -26,6 +26,7 @@
#include
<vector>
#include
<stdlib.h>
#include
<fstream>
#include
<atomic>
#include
"Dataflow.hpp"
...
...
@@ -78,4 +79,4 @@ namespace pfabric {
};
}
#endif
\ No newline at end of file
#endif
src/test/WindowTest.cpp
View file @
08b26b1a
...
...
@@ -57,7 +57,7 @@ public:
const
bool
outdated
=
false
;
mOutdatedTuplesProcessed
=
mTuplesProcessed
=
0
;
for
(
int
i
=
1
;
i
<=
ntuples
;
i
++
)
{
auto
tp
=
makeTuplePtr
(
i
,
i
,
i
*
1000000
+
start_time
);
auto
tp
=
makeTuplePtr
(
i
,
i
,
i
+
start_time
);
this
->
getOutputDataChannel
().
publish
(
tp
,
outdated
);
}
}
...
...
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