-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MathHelper utility class [ci fast]
Signed-off-by: Paolo Di Tommaso <[email protected]>
- Loading branch information
1 parent
b29a9c7
commit 7eecb26
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
modules/nf-commons/src/main/nextflow/util/MathHelper.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright 2020-2022, Seqera Labs | ||
* | ||
* 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, | ||
* 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 nextflow.util | ||
|
||
import groovy.transform.CompileStatic | ||
|
||
/** | ||
* Math helper functions | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
@CompileStatic | ||
class MathHelper { | ||
|
||
static int ceilDiv(int x, int y) { | ||
return -Math.floorDiv(-x,y) | ||
} | ||
|
||
static long ceilDiv(long x, long y){ | ||
return -Math.floorDiv(-x,y) | ||
} | ||
|
||
static long ceilDiv(long x, int y){ | ||
return -Math.floorDiv(-x,y) | ||
} | ||
|
||
} |
62 changes: 62 additions & 0 deletions
62
modules/nf-commons/src/test/nextflow/util/MathHelperTest.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright 2020-2022, Seqera Labs | ||
* | ||
* 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, | ||
* 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 nextflow.util | ||
|
||
import spock.lang.Specification | ||
import spock.lang.Unroll | ||
|
||
/** | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
class MathHelperTest extends Specification { | ||
|
||
@Unroll | ||
def 'should validate ceil div int' () { | ||
expect: | ||
MathHelper.ceilDiv(X, Y) == Z | ||
where: | ||
X | Y | Z | ||
0 | 10 | 0 | ||
1 | 10 | 1 | ||
9 | 10 | 1 | ||
10 | 10 | 1 | ||
11 | 10 | 2 | ||
19 | 10 | 2 | ||
20 | 10 | 2 | ||
21 | 10 | 3 | ||
} | ||
|
||
@Unroll | ||
def 'should validate ceil div long' () { | ||
expect: | ||
MathHelper.ceilDiv(X, Y) == Z | ||
where: | ||
X | Y | Z | ||
0 | 10_000_000_000 | 0 | ||
1 | 10_000_000_000 | 1 | ||
10_000_000_000-1 | 10_000_000_000 | 1 | ||
10_000_000_000 | 10_000_000_000 | 1 | ||
and: | ||
10_000_000_001 | 10_000_000_000 | 2 | ||
20_000_000_000 | 10_000_000_000 | 2 | ||
and: | ||
20_000_000_001 | 10_000_000_000 | 3 | ||
30_000_000_000 | 10_000_000_000 | 3 | ||
} | ||
} |