src/Tools/isac/MathEngBasic/method.sml
author Walther Neuper <walther.neuper@jku.at>
Wed, 22 Apr 2020 14:36:27 +0200
changeset 59903 5037ca1b112b
parent 59895 454fad8ab67a
child 59970 ab1c25c0339a
permissions -rw-r--r--
use "Spec", "Problem", "Method" for renaming identifiers
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@59903
     9
  val empty: T
walther@59903
    10
walther@59903
    11
  type id = Meth_Def.id
walther@59903
    12
  val id_empty: id
walther@59903
    13
  val id_to_string: id -> string
walther@59903
    14
(*val metID2str: id -> string*)
walther@59894
    15
walther@59894
    16
(* ---- for tests only: shifted from below to remove the Warning "unused" at fun.def. --------- *)
walther@59895
    17
  (*NONE*)
walther@59894
    18
(*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\* )
walther@59895
    19
  (*NONE*)
walther@59894
    20
( *\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
walther@59894
    21
end
walther@59894
    22
walther@59894
    23
(**)
walther@59894
    24
structure Method(**): METHOD(**) =
walther@59894
    25
struct
walther@59894
    26
(**)
walther@59894
    27
walther@59895
    28
type T = Meth_Def.T;
walther@59903
    29
val empty = Meth_Def.empty;
walther@59903
    30
walther@59903
    31
type id = Meth_Def.id;
walther@59903
    32
val id_empty = Meth_Def.id_empty;
walther@59903
    33
val id_to_string = Meth_Def.id_to_string;
walther@59894
    34
walther@59894
    35
(**)end(**)