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
8640ee84
Commit
8640ee84
authored
Jul 05, 2019
by
aliiohs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add decimal and test case
parent
65c3ecbb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3284 additions
and
0 deletions
+3284
-0
decimal.go
math/big/decimal.go
+2288
-0
decimal_benchmark_test.go
math/big/decimal_benchmark_test.go
+59
-0
decimal_test.go
math/big/decimal_test.go
+937
-0
No files found.
math/big/decimal.go
0 → 100644
View file @
8640ee84
This diff is collapsed.
Click to expand it.
math/big/decimal_benchmark_test.go
0 → 100644
View file @
8640ee84
// Copyright 2019 PingCAP, Inc.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package
hessian
import
"testing"
func
BenchmarkRound
(
b
*
testing
.
B
)
{
b
.
StopTimer
()
var
roundTo
BigDecimal
tests
:=
[]
struct
{
input
string
scale
int
inputDec
BigDecimal
}{
{
input
:
"123456789.987654321"
,
scale
:
1
},
{
input
:
"15.1"
,
scale
:
0
},
{
input
:
"15.5"
,
scale
:
0
},
{
input
:
"15.9"
,
scale
:
0
},
{
input
:
"-15.1"
,
scale
:
0
},
{
input
:
"-15.5"
,
scale
:
0
},
{
input
:
"-15.9"
,
scale
:
0
},
{
input
:
"15.1"
,
scale
:
1
},
{
input
:
"-15.1"
,
scale
:
1
},
{
input
:
"15.17"
,
scale
:
1
},
{
input
:
"15.4"
,
scale
:
-
1
},
{
input
:
"-15.4"
,
scale
:
-
1
},
{
input
:
"5.4"
,
scale
:
-
1
},
{
input
:
".999"
,
scale
:
0
},
{
input
:
"999999999"
,
scale
:
-
9
},
}
for
i
:=
0
;
i
<
len
(
tests
);
i
++
{
tests
[
i
]
.
inputDec
.
FromString
([]
byte
(
tests
[
i
]
.
input
))
}
b
.
StartTimer
()
for
n
:=
0
;
n
<
b
.
N
;
n
++
{
for
i
:=
0
;
i
<
len
(
tests
);
i
++
{
tests
[
i
]
.
inputDec
.
Round
(
&
roundTo
,
tests
[
i
]
.
scale
,
ModeHalfEven
)
}
for
i
:=
0
;
i
<
len
(
tests
);
i
++
{
tests
[
i
]
.
inputDec
.
Round
(
&
roundTo
,
tests
[
i
]
.
scale
,
ModeTruncate
)
}
for
i
:=
0
;
i
<
len
(
tests
);
i
++
{
tests
[
i
]
.
inputDec
.
Round
(
&
roundTo
,
tests
[
i
]
.
scale
,
modeCeiling
)
}
}
}
math/big/decimal_test.go
0 → 100644
View file @
8640ee84
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