Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
gostnops
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wei.xuan
gostnops
Commits
bdbdb48f
Commit
bdbdb48f
authored
Dec 29, 2019
by
Ming Deng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add compare and sort
parent
23d860a1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
177 additions
and
0 deletions
+177
-0
compare.go
math/compare.go
+33
-0
compare_test.go
math/compare_test.go
+38
-0
sort.go
math/sort.go
+58
-0
sort_test.go
math/sort_test.go
+48
-0
No files found.
math/compare.go
0 → 100644
View file @
bdbdb48f
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
math
// equivalent to math.Abs(expected - actual) <= delta
func
CompareFloat64
(
expected
float64
,
actual
float64
,
delta
float64
)
bool
{
if
expected
>
actual
{
return
expected
-
actual
<=
delta
}
return
actual
-
expected
<=
delta
}
func
CompareFloat32
(
expected
float32
,
actual
float32
,
delta
float32
)
bool
{
if
expected
>
actual
{
return
expected
-
actual
<=
delta
}
return
actual
-
expected
<=
delta
}
\ No newline at end of file
math/compare_test.go
0 → 100644
View file @
bdbdb48f
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
math
import
(
"testing"
)
import
(
"github.com/stretchr/testify/assert"
)
func
TestFloat64
(
t
*
testing
.
T
)
{
assert
.
True
(
t
,
CompareFloat64
(
12.3334
,
12.3344
,
0.01
))
assert
.
True
(
t
,
CompareFloat64
(
12.3334
,
12.32981
,
0.01
))
assert
.
False
(
t
,
CompareFloat64
(
12.3334
,
12.0325
,
0.01
))
}
func
TestCompareFloat32
(
t
*
testing
.
T
)
{
assert
.
True
(
t
,
CompareFloat32
(
12.3334
,
12.3344
,
0.01
))
assert
.
True
(
t
,
CompareFloat32
(
12.3334
,
12.32981
,
0.01
))
assert
.
False
(
t
,
CompareFloat64
(
12.3334
,
12.0325
,
0.01
))
}
math/sort.go
0 → 100644
View file @
bdbdb48f
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
math
import
(
"sort"
)
func
SortInt64
(
slice
[]
int64
)
{
sort
.
Sort
(
Int64Slice
(
slice
))
}
func
SortInt32
(
slice
[]
int32
)
{
sort
.
Sort
(
Int32Slice
(
slice
))
}
type
Int64Slice
[]
int64
func
(
p
Int64Slice
)
Len
()
int
{
return
len
(
p
)
}
func
(
p
Int64Slice
)
Less
(
i
,
j
int
)
bool
{
return
p
[
i
]
<
p
[
j
]
}
func
(
p
Int64Slice
)
Swap
(
i
,
j
int
)
{
p
[
i
],
p
[
j
]
=
p
[
j
],
p
[
i
]
}
type
Int32Slice
[]
int32
func
(
p
Int32Slice
)
Len
()
int
{
return
len
(
p
)
}
func
(
p
Int32Slice
)
Less
(
i
,
j
int
)
bool
{
return
p
[
i
]
<
p
[
j
]
}
func
(
p
Int32Slice
)
Swap
(
i
,
j
int
)
{
p
[
i
],
p
[
j
]
=
p
[
j
],
p
[
i
]
}
math/sort_test.go
0 → 100644
View file @
bdbdb48f
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
math
import
(
"testing"
"github.com/stretchr/testify/assert"
)
func
TestSortInt32
(
t
*
testing
.
T
)
{
data
:=
[]
int32
{
3
,
5
,
1
,
9
,
0
,
2
,
2
}
SortInt32
(
data
)
assert
.
Equal
(
t
,
int32
(
0
),
data
[
0
])
assert
.
Equal
(
t
,
int32
(
1
),
data
[
1
])
assert
.
Equal
(
t
,
int32
(
2
),
data
[
2
])
assert
.
Equal
(
t
,
int32
(
2
),
data
[
3
])
assert
.
Equal
(
t
,
int32
(
3
),
data
[
4
])
assert
.
Equal
(
t
,
int32
(
5
),
data
[
5
])
assert
.
Equal
(
t
,
int32
(
9
),
data
[
6
])
}
func
TestSortInt64
(
t
*
testing
.
T
)
{
data
:=
[]
int64
{
3
,
5
,
1
,
9
,
0
,
2
,
2
}
SortInt64
(
data
)
assert
.
Equal
(
t
,
int64
(
0
),
data
[
0
])
assert
.
Equal
(
t
,
int64
(
1
),
data
[
1
])
assert
.
Equal
(
t
,
int64
(
2
),
data
[
2
])
assert
.
Equal
(
t
,
int64
(
2
),
data
[
3
])
assert
.
Equal
(
t
,
int64
(
3
),
data
[
4
])
assert
.
Equal
(
t
,
int64
(
5
),
data
[
5
])
assert
.
Equal
(
t
,
int64
(
9
),
data
[
6
])
}
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