forked from jonkro/PosetAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IntTuple.java
63 lines (55 loc) · 953 Bytes
/
IntTuple.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
public class IntTuple
{
int lower;
int higher;
IntTuple(int a, int b)
{
if(a<=b)
{
lower = a;
higher = b;
}
else
{
lower = b;
higher = a;
}
}
int getLower()
{
return lower;
}
int getHigher()
{
return higher;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + (lower + 1)* higher;
return result;
}
/*
@Override
public boolean equals(IntTuple it)
{
boolean result = false;
if(lower == it.getLower() && higher == it.getHigher()) result = true;
return result;
}*/
@Override
public boolean equals(Object it)
{
boolean result = false;
if(lower == ((IntTuple) it).getLower() && higher == ((IntTuple) it).getHigher()) result = true;
return result;
}
public String toString()
{
StringBuffer str = new StringBuffer();
str.append("["+getLower()+","+getHigher()+"]");
return str.toString();
}
}