Skip to content

Commit

Permalink
type descriptor in java
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Mar 21, 2024
1 parent 68f2286 commit cce45d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interop/java/Full/Random.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public java.math.BigInteger UniformIntervalSample(java.math.BigInteger a, java.m
return Uniform.Interface._Companion_Trait.UniformIntervalSample(this, a, b);
}

public int UniformIntervalSample32(int a, int b) {
return Uniform.Interface._Companion_Trait32.UniformIntervalSample32(this, a, b);
public <__T> int UniformIntervalSample32(dafny.TypeDescriptor<__T> _td___T, int a, int b) {
return Uniform.Interface._Companion_Trait32.UniformIntervalSample32(_td___T, this, a, b);
}

public java.math.BigInteger UniformSample(java.math.BigInteger n) {
Expand Down

0 comments on commit cce45d4

Please sign in to comment.