/usr/share/cafeobj-1.5/lib/metalevel.cafe is in cafeobj 1.5.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | **
** CafeOBJ MetaLevel Core
**
** Copyright (c) 2000-2015, Toshimi Sawada. All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
**
** * Redistributions in binary form must reproduce the above
** copyright notice, this list of conditions and the following
** disclaimer in the documentation and/or other materials
** provided with the distribution.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
** OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
** DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
** GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
**
sys:mod! :SET(X :: TRIV) {
protecting (BOOL)
protecting (NAT)
[ Elt.X < NeSet < Set ]
op empty : -> Set {ctor}
op _;_ : Set Set -> Set {ctor assoc comm id: empty prec: 43}
op _;_ : NeSet Set -> NeSet {ctor assoc comm id: empty prec: 43}
var E : Elt.X
var N : NeSet
vars A S S' : Set
var C : Nat
op !espattern : Elt.X Set -> Bool
eq !espattern(E, (N ; S)) = true .
eq N ; N = N .
op insert : Elt.X Set -> Set
eq insert(E, S) = E ; S .
op delete : Elt.X Set -> Set
eq delete(E, (E ; S)) = delete(E, S) .
ceq delete(E, S) = S if !espattern(E, S) =/= true .
op _in_ : Elt.X Set -> Bool
eq E in (E ; S) = true .
ceq E in S = false if !espattern(E,S) =/= true .
op |_| : Set -> Nat
op |_| : NeSet -> NzNat
eq | S | = $card(S, 0) .
op $card : Set Nat -> Nat
eq $card(empty, C) = C .
eq $card((N ; N ; S), C) = $card((N ; S), C) .
ceq $card((E ; S), C) = $card(S, C + 1) if !espattern(E, S) =/= true .
op union : Set Set -> Set
op union : NeSet Set -> NeSet
op union : Set NeSet -> NeSet
eq union(S, S') = S ; S' .
op intersection : Set Set -> Set
eq intersection(S, empty) = empty .
eq intersection(S, N) = $intersect(S, N, empty) .
op $intersect : Set Set Set -> Set
eq $intersect(empty, S', A) = A .
eq $intersect((E ; S), S', A) = $intersect(S, S', if E in S' then E ; A else A fi) .
op _\_ : Set Set -> Set
eq S \ empty = S .
eq S \ N = $diff(S, N, empty) .
op $diff : Set Set Set -> Set
eq $diff(empty, S', A) = A .
eq $diff((E; S), S', A) = $diff(S, S', if E in S' then A else E ; A fi) .
op _subset_ : Set Set -> Bool .
eq empty subset S' = true .
eq (E ; S) subset S' = E in S' and-also S subset S' .
op _psubset_ : Set Set -> Bool .
eq S psubset S' = S =/= S' and-also S subset S' .
}
sys:mod! :LIST(X :: TRIV) {
protecting (NAT)
[ Elt.X < NeList < List ]
op nil : -> List {ctor}
op __ : List List -> List {ctor assoc id: nil prec: 25}
op __ : NeList List -> NeList {ctor assoc id: nil prec: 25}
op __ : List NeList -> NeList {ctor assoc id: nil prec: 25}
vars E E' : Elt.X
vars A L : List
var C : Nat
op append : List List -> List
op append : NeList List -> NeList
op append : List NeList -> NeList
eq append(A, L) = A L .
op head : NeList -> Elt.X
eq head(E L) = E .
op tail : NeList -> List
eq tail(E L) = L .
op last : NeList -> Elt.X
eq last(L E) = E .
op front : NeList -> List
eq front(L E) = L .
op occurs : Elt.X List -> Bool
eq occurs(E, nil) = false .
eq occurs(E, E' L) = if E == E' then true else occurs(E, L) fi .
op reverse : List -> List
op reverse : NeList -> NeList
eq reverse(L) = $reverse(L, nil) .
op $reverse : List List -> List
eq $reverse(nil, A) = A .
eq $reverse(E L, A) = $reverse(L, E A).
op size : List -> Nat .
op size : NeList -> NzNat
eq size(L) = $size(L, 0) .
op $size : List Nat -> Nat
eq $size(nil, C) = C .
eq $size(E L, C) = $size(L, C + 1) .
}
sys:mod! NAT-LIST {protecting (:LIST(NAT) * {sort NeList -> NeNatList, sort List -> NatList})}
sys:mod! QID-LIST {protecting (:LIST(QID) * {sort NeList -> NeQidList, sort List -> QidList})}
sys:mod! QID-SET {protecting (:SET(QID) * {sort NeSet -> NeQidSet, sort Set -> QidSet})}
**
** META-TERM
**
mod! META-TERM {
protecting (QID)
** Sort
** bsort Sort (is-sort-token create-sort-object print-meta-sort-object is-sort-object nil)
[ SortId < Qid ]
** terms
bsort Constant (is-constant-token create-constant-object print-constant-object is-constant-object nil)
bsort Variable (is-variable-token create-variable-object print-variable-object is-variable-object nil)
[ Constant Variable < TermQid < Qid Term,
Constant < GroundTerm < Term NeGroundTermList < NeTermList,
NeGroundTermList < NeTermList GroundTermList < TermList ]
op empty : -> GroundTermList {ctor}
op _,_ : NeGroundTermList GroundTermList -> NeGroundTermList {ctor assoc id: empty prec 121}
op _,_ : GroundTermList NeGroundTermList -> NeGroundTermList {ctor assoc id: empty prec 121}
op _,_ : GroundTermList GroundTermList -> GroundTermList {ctor assoc id: empty prec 121}
op _,_ : NeTermList TermList -> NeTermList {ctor assoc id: empty prec 121}
op _,_ : TermList NeTermList -> NeTermList {ctor assoc id: empty prec 121}
op _,_ : TermList TermList -> TermList {ctor assoc id: empty prec 121}
op _[_] : Qid NeGroundTermList -> GroundTerm {ctor}
op _[_] : Qid NeTermList -> Term {ctor}
** contexts (terms with a single hole)
[ Context < NeCTermList < GTermList,
TermList < GTermList ]
op [] : -> Context {ctor}
op _,_ : TermList NeCTermList -> NeCTermList {ctor assoc id: empty prec 121}
op _,_ : NeCTermList TermList -> NeCTermList {ctor assoc id: empty prec 121}
op _,_ : GTermList GTermList -> GTermList {ctor assoc id: empty prec 121}
op _[_] : Qid NeCTermList -> Context {ctor}
** extraction of names and types
op getName : Constant -> Qid
op getType : Constant -> SortId
var C : Constant
eq getName(C) = qid(substring(string(C), 0, rfind('.', string(C), 0))) .
eq getType(C) = qid(substring(string(C), rfind('.', string(C), 0) + 1)) .
op getName : Variable -> Qid
op getType : Variable -> SortId
var V : Variable
eq getName(V) = qid(substring(string(V), 0, rfind(':', string(V), 0))) .
eq getType(V) = qid(substring(string(V), rfind(':', string(V), 0) + 1)) .
** substitutions
[ Assignment < Substitution ]
op _<-_ : Variable Term -> Assignment {ctor prec 63}
op none : -> Substitution {ctor}
op _;_ : Substitution Substitution -> Substitution {ctor assoc comm id: none prec 65}
eq A:Assignment ; A:Assignment = A:Assignment .
}
mod! META-MODULE {
protecting (META-TERM)
protecting (NAT-LIST)
protecting (QID-LIST)
protecting (QID-SET * {op empty -> none})
** subsort declarations
[ SubsortDecl < SubsortDeclSet ]
op [_<_] : SortId SortId -> SubsortDecl {ctor}
op none : -> SubsortDeclSet {ctor}
op __ : SubsortDeclSet SubsortDeclSet -> SubsortDeclSet {ctor assoc comm id: none}
eq S:SubsortDecl S:SubsortDecl = S:SubsortDecl .
** sort set
[ EmptySortSet < SortSet < QidSet]
[ SortId < NeSortSet < SortSet ]
[ NeSortSet < NeQidSet ]
op none : -> EmptySortSet {ctor}
op _;_ : SortSet SortSet -> SortSet {ctor assoc comm id: none prec: 43}
op _;_ : NeSortSet SortSet -> NeSortSet {ctor assoc comm id: none prec: 43}
op _;_ : EmptySortSet EmptySortSet -> EmptySortSet {ctor assoc comm id: none prec: 43}
** sort lists
[ NeSortList SortList ]
[ SortId < NeSortList < SortList < QidList ]
op nil : -> SortList {ctor}
op __ : SortList SortList -> SortList {ctor assoc comm id: nil}
op __ : NeSortList SortList -> NeSortList {ctor assoc comm id: nil}
op __ : SortList NeSortList -> NeSortList {ctor assoc comm id: nil}
eq T:SortList ; T:SortList = T:SortList .
** sets of sort lists
[ SortList SortSet < SortListSet ]
op none : -> SortListSet
op _;_ : SortListSet SortListSet -> SortListSet {ctor assoc comm id: none prec: 43}
** attribute sets
[ Attr < AttrSet ]
op none : -> AttrSet {ctor}
op __ : AttrSet AttrSet -> AttrSet {ctor assoc comm id: none}
eq A:Attr A:Attr = A:Attr .
** renamings
[ Renaming < RenamingSet ]
op (sort_->_) : Qid Qid -> Renaming {ctor}
op (op_->_) : Qid Qid -> Renaming {ctor}
op (op_:_->_to_) : Qid SortList SortId Qid -> Renaming {ctor}
op label_->_ : Qid Qid -> Renaming {ctor}
op _,_ : RenamingSet RenamingSet -> RenamingSet {ctor assoc comm prec: 43}
** parameter lists
[ Sort < NeParameterList < ParameterList ]
[ EmptyCommaList < GroundTermList ParameterList ]
op empty : -> EmptyCommaList {ctor}
op _,_ : ParameterList ParameterList -> ParameterList {ctor assoc comm prec: 43}
op _,_ : NeParameterList ParameterList -> NeParameterList {ctor assoc comm prec: 43}
op _,_ : ParameterList NeParameterList -> NeParameterList {ctor assoc comm prec: 43}
op _,_ : EmptyCommaList EmptyCommaList -> EmptyCommaList {ctor assoc comm prec: 43}
** module expressions
[ Qid < ModuleExpression ]
op _+_ : ModuleExpression ModuleExpression -> ModuleExpression {ctor assoc comm}
op _*{_} : ModuleExpression RenamingSet -> ModuleExpression {ctor prec: 39}
op _[_] : ModuleExpression ParameterList -> ModuleExpression {ctor prec: 37}
** parameter declarations
[ ParameterDecl < NeParameterDeclList < ParameterDeclList ]
op _::_ : Sort ModuleExpression -> ParameterDecl .
op nil : -> ParameterDeclList [ctor] .
op _,_ : ParameterDeclList ParameterDeclList -> ParameterDeclList {ctor assoc id: nil prec: 121}
op _,_ : NeParameterDeclList ParameterDeclList -> NeParameterDeclList {ctor assoc id: nil prec: 121}
op _,_ : ParameterDeclList NeParameterDeclList -> NeParameterDeclList {ctor assoc id: nil prec: 121}
** importations
[ Import < ImportList ]
op protecting : ModuleExpression -> Import {ctor}
op extending : ModuleExpression -> Import {ctor}
op including : ModuleExpression -> Import {ctor}
op nil : -> ImportList {ctor}
op __ : ImportList ImportList -> ImportList {ctor assoc id: nil}
** operator attributes
op assoc : -> Attr {ctor}
op comm : -> Attr {ctor}
op idem : -> Attr [ctor]
op (id:) : Term -> Attr {ctor}
op (idr:) : Term -> Attr {ctor}
op l-assoc : -> Attr {ctor}
op r-assoc : -> Attr {ctor}
op (strat:) : NeNatList -> Attr {ctor}
op memo : -> Attr {ctor}
op (prec:) : Nat -> Attr {ctor}
op ctor : -> Attr {ctor}
** statement attributes
op label : Qid -> Attr {ctor}
op :nonexec : -> Attr {ctor}
** operator declarations
[ OpDecl < OpDeclSet ]
op (op_:_->_{_}) : Qid SortList Sort AttrSet -> OpDecl {ctor}
op none : -> OpDeclSet {ctor}
op __ : OpDeclSet OpDeclSet -> OpDeclSet {ctor assoc comm id: none}
eq O:OpDecl O:OpDecl = O:OpDecl .
** conditions
[ EqCondition < Condition ]
op nil : -> EqCondition {ctor}
op _=_ : Term Term -> EqCondition {ctor prec: 71}
op (_:_) : Term Sort -> EqCondition {ctor prec: 71}
op (_:=_): Term Term -> EqCondition {ctor prec: 71}
op _=>_ : Term Term -> Condition {ctor prec: 71}
op _/\_ : EqCondition EqCondition -> EqCondition {ctor assoc id: nil prec: 73}
op _/\_ : Condition Condition -> Condition {ctor assoc id: nil prec: 73}
** equations
[ Equation < EquationSet ]
op (eq[_]:_=_.) : AttrSet Term Term -> Equation {ctor}
op (ceq[_]:_=_if_.) : AttrSet Term Term EqCondition -> Equation {ctor}
op none : -> EquationSet {ctor}
op __ : EquationSet EquationSet -> EquationSet{ctor assoc comm id: none}
eq E:Equation E:Equation = E:Equation .
** rules
[ Rule < RuleSet ]
op (tr[_]:_=>_.) : AttrSet Term Term -> Rule {ctor}
op (ctr[_]:_=>_if_.) : AttrSet Term Term Condition -> Rule {ctor}
op none : -> RuleSet {ctor}
op __ : RuleSet RuleSet -> RuleSet {ctor assoc comm id: none}
eq R:Rule R:Rule = R:Rule .
** modules
[ FModule Theory LModule < Module ]
[ Qid < Header ]
op _[_] : Qid ParameterDeclList -> Header {ctor}
op module!_{_[_]____} : Header ImportList SortSet SubsortDeclSet OpDeclSet EquationSet RuleSet
-> FModule {ctor}
op module_{_[_]____} : Header ImportList SortSet SubsortDeclSet OpDeclSet EquationSet RuleSet
-> LModule {ctor}
op module*_{_[_]____} : Header ImportList SortSet SubsortDeclSet OpDeclSet EquationSet RuleSet
-> Theory {ctor}
** op [_] : Qid -> Module .
** eq [Q:Qid] = (module* Q:Qid { including(Q:Qid)
** [ none ] none none none none none }) .
** projection functions
var Q : Qid .
var PDL : ParameterDeclList .
var H : Header .
var M : Module .
var IL : ImportList .
var SS : SortSet .
var SSDS : SubsortDeclSet .
var OPDS : OpDeclSet .
var EQS : EquationSet .
var RLS : RuleSet .
}
eof
** TODO
op getName : Module -> Qid .
eq getName(mod! Q {IL sorts SS . SSDS OPDS MAS EQS }) = Q .
eq getName(mod! Q {IL sorts SS . SSDS OPDS MAS EQS RLS }) = Q .
eq getName(fmod Q{PDL} is IL sorts SS . SSDS OPDS MAS EQS endfm) = Q .
eq getName(mod Q{PDL} is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = Q .
eq getName(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = Q .
eq getName(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = Q .
op getImports : Module -> ImportList .
eq getImports(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = IL .
eq getImports(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = IL .
eq getImports(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = IL .
eq getImports(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = IL .
op getSorts : Module -> SortSet .
eq getSorts(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = SS .
eq getSorts(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = SS .
eq getSorts(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = SS .
eq getSorts(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = SS .
op getSubsorts : Module -> SubsortDeclSet .
eq getSubsorts(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = SSDS .
eq getSubsorts(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = SSDS .
eq getSubsorts(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = SSDS .
eq getSubsorts(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = SSDS .
op getOps : Module -> OpDeclSet .
eq getOps(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = OPDS .
eq getOps(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = OPDS .
eq getOps(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = OPDS .
eq getOps(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = OPDS .
;; op getMbs : Module -> MembAxSet .
eq getMbs(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = MAS .
eq getMbs(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = MAS .
eq getMbs(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = MAS .
eq getMbs(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = MAS .
op getEqs : Module -> EquationSet .
eq getEqs(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = EQS .
eq getEqs(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = EQS .
eq getEqs(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = EQS .
eq getEqs(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = EQS .
op getRls : Module -> RuleSet .
eq getRls(fmod H is IL sorts SS . SSDS OPDS MAS EQS endfm) = none .
eq getRls(mod H is IL sorts SS . SSDS OPDS MAS EQS RLS endm) = RLS .
eq getRls(fth Q is IL sorts SS . SSDS OPDS MAS EQS endfth) = none .
eq getRls(th Q is IL sorts SS . SSDS OPDS MAS EQS RLS endth) = RLS .
}
|