(* Title: Pure/Isar/proof_history.ML ID: $Id: proof_history.ML,v 1.13 2005/08/16 11:42:44 wenzelm Exp $ Author: Markus Wenzel, TU Muenchen Histories of proof states, with undo / redo and backtracking. *) signature PROOF_HISTORY = sig type T exception FAIL of string val position: T -> int val init: int option -> Proof.state -> T val is_initial: T -> bool val current: T -> Proof.state val previous: T -> Proof.state option val clear: int -> T -> T val undo: T -> T val redo: T -> T val back: T -> T val applys: (Proof.state -> Proof.state Seq.seq) -> T -> T val apply: (Proof.state -> Proof.state) -> T -> T end; structure ProofHistory: PROOF_HISTORY = struct (* datatype proof history *) type node = Proof.state * (*first result*) Proof.state Seq.seq; (*alternative results*) type proof = node * node list; datatype T = ProofHistory of proof History.T; exception FAIL of string; fun app f (ProofHistory x) = ProofHistory (f x); fun hist_app f = app (History.apply f); fun position (ProofHistory prf) = length (snd (History.current prf)); (* generic history operations *) fun init lim st = ProofHistory (History.init lim ((st, Seq.empty), [])); fun is_initial (ProofHistory prf) = History.is_initial prf; fun current (ProofHistory prf) = fst (fst (History.current prf)); fun previous (ProofHistory prf) = Option.map (fst o fst) (History.previous prf); val clear = app o History.clear; val undo = app History.undo; val redo = app History.redo; (* backtracking *) val back = hist_app (fn ((_, stq), nodes) => (case Seq.pull stq of NONE => raise FAIL "back: no alternatives" | SOME result => (result, nodes))); (* apply transformer *) fun applys f = hist_app (fn (node as (st, _), nodes) => (case Seq.pull (f st) of NONE => raise FAIL "empty result sequence -- proof command failed" | SOME results => (results, node :: nodes))); fun apply f = applys (Seq.single o f); end;