Skip to content

Commit

Permalink
Edit README; edit pom.xml for project
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jun 30, 2021
1 parent 0026982 commit 088dd02
Show file tree
Hide file tree
Showing 5 changed files with 218 additions and 213 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ project, add the following to the `dependencies` section in your `pom.xml` file:
<dependency>
<groupId>com.github.peteroupc</groupId>
<artifactId>numbers</artifactId>
<version>1.8.0</version>
<version>1.8.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.peteroupc</groupId>
<artifactId>numbers</artifactId>
<packaging>jar</packaging>
<version>1.8.0</version>
<version>1.8.1</version>
<name>Arbitrary-Precision Number Library</name>
<description>A Java library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.</description>
<url>https://github.com/peteroupc/Numbers-Java</url>
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/com/upokecenter/numbers/RadixMath.java
Expand Up @@ -2282,8 +2282,10 @@ public T Power(T thisValue, T pow, EContext ctx) {
// thisValue is 1 and power is a negative integer, the reciprocal of 1
// is used, which will have an exponent of 0, according to the
// General Decimal Arithmetic Specification
return this.PowerIntegral(this.helper.ValueOf(1), signedMant,
ctx);
return this.PowerIntegral(
this.helper.ValueOf(1),
signedMant,
ctx);
} else {
return this.PowerIntegral(thisValue, signedMant, ctx);
}
Expand Down

0 comments on commit 088dd02

Please sign in to comment.