src/Tools/isac/MathEngBasic/method.sml
author Walther Neuper <walther.neuper@jku.at>
Tue, 21 Apr 2020 10:53:04 +0200
changeset 59895 454fad8ab67a
parent 59894 b9e10434530c
child 59903 5037ca1b112b
permissions -rw-r--r--
derive Method.T from Meth_Def.T, drop funs and types used by Know_Store
walther@59894
     1
(* Title:  Interpret/lucas-interpreter.sml
walther@59894
     2
   Author: Walther Neuper 2019
walther@59894
     3
   (c) due to copyright terms
walther@59894
     4
*)
walther@59894
     5
walther@59894
     6
signature METHOD =
walther@59894
     7
sig
walther@59895
     8
  type T = Meth_Def.T
walther@59894
     9
walther@59894
    10
(* ---- for tests only: shifted from below to remove the Warning "unused" at fun.def. --------- *)
walther@59895
    11
  (*NONE*)
walther@59894
    12
(*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\* )
walther@59895
    13
  (*NONE*)
walther@59894
    14
( *\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
walther@59894
    15
end
walther@59894
    16
walther@59894
    17
(**)
walther@59894
    18
structure Method(**): METHOD(**) =
walther@59894
    19
struct
walther@59894
    20
(**)
walther@59894
    21
walther@59895
    22
type T = Meth_Def.T;
walther@59894
    23
walther@59894
    24
(**)end(**)