-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-16.cl
79 lines (70 loc) · 1.12 KB
/
test-16.cl
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
class Main inherits IO {
main() : SELF_TYPE {
(let c : Complex <- (new Complex).init(1, 1) in
{
-- trivially equal (see CoolAid)
if c.reflect_X() = c.reflect_0()
then out_string("passed\n")
else out_string("failed\n")
fi;
-- equal
if c.reflect_X().reflect_Y().equal(c.reflect_0())
then out_string("passed\n")
else out_string("failed\n")
fi;
}
)
};
};
class Complex inherits IO {
x : Int;
y : Int;
init(a : Int, b : Int) : Complex {
{
x <- a;
y <- b;
self;
}
};
print() : Object {
if y = 0
then out_int(x)
else out_int(x).out_string("+").out_int(y).out_string("I")
fi
};
reflect_0() : Complex {
{
x <- ~x;
y <- ~y;
self;
}
};
reflect_X() : Complex {
{
y <- ~y;
self;
}
};
reflect_Y() : Complex {
{
x <- ~x;
self;
}
};
equal(d : Complex) : Bool {
if x = d.x_value()
then
if y = d.y_value()
then true
else false
fi
else false
fi
};
x_value() : Int {
x
};
y_value() : Int {
y
};
};