プログラムのデバッグ支援(仮)

Yasutaka Higa - profile not found -

研究目的(仮)

近況報告

parallel debugger sample session

reflection without remorse

reflection without remorse - diff list

type DiffList a = [a] -> [a]

reflection without remorse - abs and rep

absFromDiffList :: DiffList a -> [a]
absFromDiffList a = a []
rep :: [a] -> DiffList a
rep = (++)

reflection without remorse - concat diffliset

(+++) :: DiffList a -> DiffList a -> DiffList a
(+++) = (.)