lama_byterun/stdlib/regression/test30.lama
Dmitry Boulytchev f6d4a475b4 Better eq
2020-08-04 15:48:20 +03:00

187 lines
No EOL
4 KiB
Text

import Collection;
import Ref;
import Random;
import Array;
import Fun;
local m = emptyPtrMap ();
fun eq (x, y) {
local m = ref (emptyPtrMap ());
fun alreadyEq (x, y) {
fun find (x) {
fun walk (r) {
case r of
[#unboxed] -> r
| [x] -> walk (x)
esac
}
case findPtrMap (deref (m), x) of
Some (r) -> Some (walk (r))
| x -> x
esac
}
case [find (x), find (y)] of
[None, None] ->
local v = [1];
m ::= addPtrMap (addPtrMap (deref (m), x, v), y, v);
false
| [None, Some (ry)] ->
m ::= addPtrMap (deref (m), x, ry);
false
| [Some (rx), None] ->
m ::= addPtrMap (deref (m), y, rx);
false
| [Some (rx), Some (ry)] ->
if rx == ry
then true
else
rx [0] := ry;
false
fi
esac
}
fun eqargs (x, y, from) {
local continue = true;
if x.length != y.length
then false
else
for local i = from;, i<x.length && continue, i := i + 1 do
continue := eqrec (x[i], y[i])
od;
continue
fi
}
fun eqrec (x, y) {
if alreadyEq (x, y)
then true
else
if rawTag (x) != rawTag (y) then false
else
case x of
#array -> eqargs (x, y, 0)
| #fun -> if x[0] == y[0] then eqargs (x, y, 1) else false fi
| #sexp -> if compareTags (x, y) == 0 then eqargs (x, y, 0) else false fi
| _ -> compare (x, y) == 0
esac
fi
fi
}
eqrec (x, y)
}
fun genCyclicArrays (n, eq, cross) {
local f = ref (true);
fun genrec (n, stacka, stackb, depth) {
fun peek (k, stack) {
case stack of
[x, prev] -> if k == 0 then x else peek (k-1, prev) fi
esac
}
if n == 1
then
case if random (2)
then randomString (16)
else randomInt ()
fi of
x -> [x, clone (x)]
esac
else
local a = split (n),
b = mapArray (id, a),
index = initArray (random (a.length + 1), fun (_) {random (a.length)});
fun shared (i) {
local found = false;
for local j=0;, j < index.length && 1 - found, j := j + 1
do
found := i == index[j]
od;
found
}
for local i=0;, i < a.length, i := i + 1
do
if shared (i)
then
if depth == 0
then
a[i] := a;
b[i] := if cross then a else b fi
else
case random (depth) of
r -> a [i] := peek (r, stacka);
b [i] := if cross then a[i] else peek (r, stackb) fi
esac
fi;
if 1 - eq && deref (f) then b[i] := 0; f ::= true fi
else
case genrec (a[i], [a, stacka], [b, stackb], depth + 1) of
[ai, bi] -> a [i] := ai;
b [i] := bi;
if 1 - eq && deref (f) then
case b[i] of
#unboxed -> b[i] := b[i] + 1
| _ -> b[i] := 0
esac;
f ::= true
fi
esac
fi
od;
[a, b]
fi
}
genrec (n, [], [], 0)
}
disableGC ();
for local i=0;, i<25, i:=i+1
do
case genCyclicArrays (1000, true, false) of
[a, _] -> printf ("%d\n", eq (a, a) == true)
| [a, b] -> printf ("%d\n", eq (a, b) == true)
esac
od;
for local i=0;, i<25, i:=i+1
do
case genCyclicArrays (1000, true, true) of
[a, _] -> printf ("%d\n", eq (a, a) == true)
| [a, b] -> printf ("%d\n", eq (a, b) == true)
esac
od;
for local i=0;, i<25, i:=i+1
do
case genCyclicArrays (1000, false, false) of
[a, b] -> printf ("%d\n", eq (a, b) == false)
esac
od;
for local i=0;, i<25, i:=i+1
do
case genCyclicArrays (1000, false, true) of
[a, b] -> printf ("%d\n", eq (a, b) == false)
esac
od