Changeset 12724

Show
Ignore:
Timestamp:
26.10.2009 15:22:37 (4 weeks ago)
Author:
adrian
Message:

Some errors fixed

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/CASL/Freeness.hs

    r12723 r12724  
    498498-- | given the signature in M the function computes the morphism from M' to K 
    499499create_iota_mor :: Set.Set SORT -> CASLSign -> CASLMor 
    500 create_iota_mor ss sg_m = Morphism sg_m usg' sm om pm () 
     500create_iota_mor ss sg_m = Morphism iota_sg usg' sm om pm () 
    501501      where iota_sg = totalSignCopy sg_m 
    502502            usg = addSig const sg_m iota_sg 
  • trunk/Maude/test.maude

    r12420 r12724  
    1 fth ALPHA-ASSOC is 
     1fth FREENESS is 
     2 pr BOOL . 
     3  
     4 sort Foo . 
     5  
     6 eq true and true = true . 
     7endfth 
     8 
     9view Freeness from FREENESS to BOOL is 
     10 sort Foo to Bool . 
     11endv 
     12 
     13fth ALPHA_ASSOC is 
    214 sort Foo . 
    315 op f : Foo Foo -> Foo [ctor assoc] . 
    416endfth 
    517 
    6 fmod OTHER-ALPHA-ASSOC is 
     18fmod OTHER_ALPHA_ASSOC is 
    719 sort Elt . 
    820 op g : Elt Elt -> Elt [ctor] . 
     
    1325endfm 
    1426 
    15 view VALPHA from ALPHA-ASSOC to OTHER-ALPHA-ASSOC is 
     27view VALPHA from ALPHA_ASSOC to OTHER_ALPHA_ASSOC is 
    1628 sort Foo to Elt . 
    1729 op f to g . 
    1830endv 
    1931 
    20 fmod MY-LIST is 
     32fmod MY_LIST is 
    2133 sorts List Elt . 
    2234 subsort Elt < List . 
     
    3345endfm 
    3446 
    35 fmod MY-LIST-OPS is 
    36  pr MY-LIST . 
     47fmod MY_LIST_OPS is 
     48 pr MY_LIST . 
    3749endfm 
    3850