Skip to content

Commit

Permalink
Changed size of integers sets
Browse files Browse the repository at this point in the history
  • Loading branch information
VincenzoArceri committed Feb 23, 2024
1 parent 34243d9 commit e17fc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/it/unipr/analysis/KIntegerSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

public class KIntegerSet extends SetLattice<KIntegerSet, BigDecimal> {
private static final BigDecimal MAX = new BigDecimal(Math.pow(2, 256));
public static final int K = 1;
public static final int K = 2;

public static final KIntegerSet ZERO = new KIntegerSet(0);
public static final KIntegerSet ONE = new KIntegerSet(1);
Expand Down

0 comments on commit e17fc61

Please sign in to comment.