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

14 lines
274 B
Standard ML
Raw Normal View History

structure LineGapSeph: TRANSACTION =
struct
type t = LineGap.t
val empty = LineGap.empty
val insert = LineGap.insert
val delete = LineGap.delete
val toString = LineGap.toString
val txns = SephBlog.txns
end
structure Main = Run(LineGapSeph)
val _ = Main.run ()