Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Tobias Langer
/
experiment
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
98a440a1
authored
8 years ago
by
Tobias Langer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed error in printing.
parent
afffe140
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
analysis.py
+3
-3
No files found.
analysis.py
View file @
98a440a1
...
...
@@ -93,17 +93,17 @@ def main():
with
open
(
'analysis/{}_e2e.dat'
.
format
(
args
.
analysis
),
'w'
)
as
e2efile
:
for
key
,
value
in
out
.
items
():
for
elem
in
value
:
print
(
'{}; {}'
.
format
(
key
,
elem
[
1
],
elem
[
4
]),
file
=
e2efile
)
print
(
'{}; {}
; {}
'
.
format
(
key
,
elem
[
1
],
elem
[
4
]),
file
=
e2efile
)
with
open
(
'analysis/{}_misses.dat'
.
format
(
args
.
analysis
),
'w'
)
as
missesfile
:
for
key
,
value
in
out
.
items
():
for
elem
in
value
:
print
(
'{}; {}'
.
format
(
key
,
elem
[
2
],
elem
[
4
]),
file
=
missesfile
)
print
(
'{}; {}
; {}
'
.
format
(
key
,
elem
[
2
],
elem
[
4
]),
file
=
missesfile
)
with
open
(
'analysis/{}_response.dat'
.
format
(
args
.
analysis
),
'w'
)
as
responsefile
:
for
key
,
value
in
out
.
items
():
for
elem
in
value
:
print
(
'{}; {}'
.
format
(
key
,
elem
[
3
],
elem
[
4
]),
file
=
responsefile
)
print
(
'{}; {}
; {}
'
.
format
(
key
,
elem
[
3
],
elem
[
4
]),
file
=
responsefile
)
if
__name__
==
'__main__'
:
main
()
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