Prev Up Next
Go backward to 1 Basic Concepts
Go up to Top
Go forward to 3 Subsorting Concepts

2 Basic Constructs

This chapter indicates the abstract and concrete syntax of the constructs of many-sorted basic specifications, and describes their intended interpretation.

For an introduction to the form of grammar used here to define the abstract syntax of language constructs, see Appendix A, which also provides the complete grammar defining the abstract syntax of the entire CASL specification language.

      BASIC-SPEC ::= basic-spec BASIC-ITEMS*

A  well-formed many-sorted basic specification BASIC-SPEC in the CASL language is written simply as a sequence of BASIC-ITEMS constructs:

BI1...BIn
The empty basic specification is not usually needed, but can be written `{ }'.

This language construct determines a basic specification [CHANGED:] within [] the underlying many-sorted institution, consisting of a signature and a set of sentences of the form described in Chapter 1. The models of this signature and set of sentences provide the semantics of the basic specification. Thus this chapter explains well-formedness of basic specifications, and the way that they determine the underlying signatures and sentences, rather than directly explaining the intended interpretation of the constructs.

While well-formedness of [CHANGED:] specifications in the language can be checked statically, the question of whether the value of a term that occurs in a well-formed specification is necessarily defined in all models [] may depend on the specified axioms (and it is not decidable in general).

      BASIC-ITEMS ::= SIG-ITEMS | FREE-DATATYPE | SORT-GEN
                    | VAR-ITEMS | LOCAL-VAR-AXIOMS | AXIOM-ITEMS

A BASIC-ITEMS construct is always a list, written:

plural-keyword X1; ... Xn;
The plural-keyword may also be written in the singular (regardless of the number of items), and the final `;' may be omitted.

Each BASIC-ITEMS construct determines part of a signature and/or some sentences (except for VAR-ITEMS, which merely declares some global variables). The order of the basic items is generally significant: there is linear visibility of declared symbols and variables in a list of BASIC-ITEMS constructs (except within a list of datatype declarations). Verbatim repetition of the declaration of a symbol [CHANGED:] is allowed, [] and does not affect the semantics (some tools may however be able to locate and warn about such duplications, in case they were not intentional).

A list of signature declarations and definitions SIG-ITEMS determines part of a signature and possibly some sentences. A FREE-DATATYPE construct determines part of a signature together with some sentences. A sort-generation construct SORT-GEN determines part of a signature, together with [CHANGED:] some sentences including [] a corresponding sort generation constraint. A list of variable declaration items VAR-ITEMS determines sorted variables that are implicitly universally quantified in the subsequent axioms of the enclosing basic specification; note that variable declarations do not contribute to the signature of the specification in which they occur. A LOCAL-VAR-AXIOMS construct restricts the scope of the variable declarations to the indicated list of axioms. (Variables may also be declared locally in individual axioms, by explicit quantification.) An AXIOM-ITEMS construct determines a set of sentences.

  • 2.1 Signature Declarations
  • 2.1.1 Sorts
  • 2.1.2 Operations
  • 2.1.3 Predicates
  • 2.1.4 Datatypes
  • 2.1.5 Sort Generation
  • 2.2 Variables
  • 2.2.1 Global Variable Declarations
  • 2.2.2 Local Variable Declarations
  • 2.3 Axioms
  • 2.3.1 Quantifications
  • 2.3.2 Logical Connectives
  • 2.3.3 Atomic Formulae
  • 2.3.4 Terms
  • 2.4 Identifiers

  • CoFI Document: CASL/Summary-v1.0 -- Version: 1.0 -- 22 October 1998.
    Comments to cofi-language@brics.dk

    Prev Up Next