src/Tools/isac/Interpret/solve-step.sml
author Walther Neuper <walther.neuper@jku.at>
Wed, 29 Apr 2020 12:30:51 +0200
changeset 59920 33913fe24685
child 59921 0766dade4a78
permissions -rw-r--r--
prep. separation of check Applicable between specify-phase and solve-phase
     1 (* Title:  Specify/solve-step.sml
     2    Author: Walther Neuper
     3    (c) due to copyright terms
     4 
     5 Code for the solve-phase in analogy to structure Specify_Step for the specify-phase.
     6 *)
     7 
     8 signature SOLVE_STEP =
     9 sig
    10   val check_appl: Pos.pos' -> CTbasic.ctree -> Tactic.input -> Applicable.T
    11 end
    12 
    13 (**)
    14 structure Solve_Step(** ): SOLVE_STEP( **) =
    15 struct
    16 (**)
    17 
    18 (*-----^^^^^- specify -----vvvvv- solve --------------------------------------------------------*)
    19 (*-----^^^^^- solve ---------------------------------------------------------------------------*)
    20 
    21 
    22 
    23 (**)end(**);