Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
avocado
提交
4f2e968e
A
avocado
项目概览
openeuler
/
avocado
通知
0
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
avocado
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4f2e968e
编写于
6月 08, 2016
作者:
A
Amador Pahim
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1247 from ldoktor/compare-matrix
avocado.utils.data_structures: Adjust compare_matrices
上级
f4b0e514
6429522b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
3 addition
and
3 deletion
+3
-3
avocado/utils/data_structures.py
avocado/utils/data_structures.py
+2
-2
selftests/unit/test_data_structures.py
selftests/unit/test_data_structures.py
+1
-1
未找到文件。
avocado/utils/data_structures.py
浏览文件 @
4f2e968e
...
...
@@ -71,7 +71,7 @@ def compare_matrices(matrix1, matrix2, threshold=0.05):
same
=
0
new_matrix
=
[]
for
line1
,
line2
in
zip
(
matrix1
,
matrix2
):
for
line1
,
line2
in
i
zip
(
matrix1
,
matrix2
):
new_line
=
[]
elements
=
izip
(
line1
,
line2
)
try
:
...
...
@@ -94,7 +94,7 @@ def compare_matrices(matrix1, matrix2, threshold=0.05):
new_line
.
append
(
"."
)
same
+=
1
else
:
new_line
.
append
(
"
Error
%s/%s"
%
(
element2
,
element1
))
new_line
.
append
(
"
error_
%s/%s"
%
(
element2
,
element1
))
improvements
+=
1
try
:
element1
,
element2
=
elements
.
next
()
...
...
selftests/unit/test_data_structures.py
浏览文件 @
4f2e968e
...
...
@@ -39,7 +39,7 @@ class TestDataStructures(unittest.TestCase):
matrix2
=
[[
"header"
,
57.2
,
54
],
[
2
,
51
,
0
]]
self
.
assertEqual
(
data_structures
.
compare_matrices
(
matrix1
,
matrix2
),
([[
"header"
,
'+10.6382978723'
,
-
10.0
],
[
'+100.0'
,
'
Error
51/0'
,
'.'
]],
3
,
1
,
5
))
'
error_
51/0'
,
'.'
]],
3
,
1
,
5
))
def
test_lazy_property
(
self
):
"""
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录