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
     1 (* Title:  Interpret/lucas-interpreter.sml
     2    Author: Walther Neuper 2019
     3    (c) due to copyright terms
     4 *)
     5 
     6 signature METHOD =
     7 sig
     8   type T = Meth_Def.T
     9   val empty: T
    10 
    11   type id = Meth_Def.id
    12   val id_empty: id
    13   val id_to_string: id -> string
    14 (*val metID2str: id -> string*)
    15 
    16 (* ---- for tests only: shifted from below to remove the Warning "unused" at fun.def. --------- *)
    17   (*NONE*)
    18 (*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\* )
    19   (*NONE*)
    20 ( *\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
    21 end
    22 
    23 (**)
    24 structure Method(**): METHOD(**) =
    25 struct
    26 (**)
    27 
    28 type T = Meth_Def.T;
    29 val empty = Meth_Def.empty;
    30 
    31 type id = Meth_Def.id;
    32 val id_empty = Meth_Def.id_empty;
    33 val id_to_string = Meth_Def.id_to_string;
    34 
    35 (**)end(**)