Skip to content

Commit

Permalink
Fix some BigInteger stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbattle committed Nov 7, 2023
1 parent 5bd3331 commit cec3a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

package quickcheck.visitors;

import java.math.BigInteger;
import java.util.Collections;
import java.util.List;
import java.util.Vector;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package quickcheck.visitors;

import java.math.BigInteger;
import java.util.List;
import java.util.Vector;

Expand Down Expand Up @@ -151,7 +152,7 @@ protected FunctionValue instantiate(TCFunctionType node)
}
else if (ptype.result instanceof TCNumericType)
{
body = new INIntegerLiteralExpression(new LexIntegerToken(1, node.location));
body = new INIntegerLiteralExpression(new LexIntegerToken(BigInteger.ONE, node.location));
}
else
{
Expand Down

0 comments on commit cec3a1e

Please sign in to comment.