Files
sml-projects/brolib-sml/bench/rope_automerge.sml

14 lines
289 B
Standard ML
Raw Normal View History

structure RopeAutomerge: TRANSACTION =
struct
type t = TinyRope.t
val empty = TinyRope.empty
val insert = TinyRope.insert
val delete = TinyRope.delete
val toString = TinyRope.toString
val txns = AutomergePaper.txns
end
structure Main = Run(RopeAutomerge)
val _ = Main.run ()