Skip to content

Commit

Permalink
revert version and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Jul 26, 2024
1 parent 5fb57d5 commit 9ff2fcb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/java/TestSamplers.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public static void main(String[] args) {
System.out.println(r.DiscreteGaussianSample(l, k, 7));

System.out.println("Testing DiscreteLaplace(1000000, 1)");
System.out.println(r.DiscreteLaplaceSample(k, l, 7));
System.out.println(r.DiscreteLaplaceSample(k, l));
System.out.println("Testing DiscreteLaplace(1, 1000000)");
System.out.println(r.DiscreteLaplaceSample(l, k, 7));
System.out.println(r.DiscreteLaplaceSample(l, k));

/* CUSTOM RNG */
System.out.println("\nCUSTOM RNG TESTS\n");
Expand Down
2 changes: 1 addition & 1 deletion scripts/prep.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=https://github.com/dafny-lang/dafny/releases/download/v4.7.0/dafny-4.7.0-x64-ubuntu-20.04.zip
VERSION=https://github.com/dafny-lang/dafny/releases/download/v4.4.0/dafny-4.4.0-x64-ubuntu-20.04.zip

wget $VERSION
unzip `basename $VERSION`

0 comments on commit 9ff2fcb

Please sign in to comment.