File: parameterTheoryMay2019.expected

package info (click to toggle)
maude 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,480 kB
  • sloc: cpp: 133,192; makefile: 2,180; yacc: 1,984; sh: 1,373; lex: 886
file content (18 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fmod BAR{Q :: TRIV} is
  sort Q$Elt .
  op a : -> Q$Elt .
endfm
fmod BAR{Q :: T} is
  sort Q$Elt .
  op 0 : -> Q$Elt .
  op a : -> Q$Elt .
  eq a = 0 .
endfm
fmod BAR{Q :: T} is
  sort Q$Elt .
  op f : Universal -> Q$Elt [poly (1)] .
  op a : -> Q$Elt .
  op b : -> Q$Elt .
  eq f(a) = b .
endfm
Bye.