Skip to content

possible_world

GCHQDeveloper42 edited this page Mar 27, 2023 · 5 revisions

Possible World

An individual that is a complete spatio-temporal history of some possible world.

Attributes

  • member_of: A member_of relationship type where a possible_world may be a member_of one or more class_of_possible_world.

Subtypes

EXPRESS Specification

Diagram 11

Schema

ENTITY possible_world
  SUBTYPE OF(individual, period_of_time);
    SELF\individual.member_of : OPTIONAL SET [1:?] OF class_of_possible_world;
END_ENTITY;
Inheritance Graph

ENTITY possible_world;
  ENTITY thing;
    member__of             : OPTIONAL SET [1:?] OF class;
  ENTITY spatio_temporal_extent;
    part__of               : OPTIONAL SET [1:?] OF spatio_temporal_extent;
    beginning              : OPTIONAL event;
    ending                 : OPTIONAL event;
    part_of_possible_world : SET [1:?] OF possible_world;
    temporal__part_of      : OPTIONAL SET [1:?] OF spatio_temporal_extent;
    aggregated_into        : OPTIONAL SET [1:?] OF spatio_temporal_extent;
  INVERSE
    consists__of           : SET OF spatio_temporal_extent FOR part__of;
  ENTITY state;
    temporal_part_of       : OPTIONAL SET [1:?] OF individual;
  ENTITY individual;
    member_of_kind         : OPTIONAL SET [1:?] OF kind_of_individual;
  ENTITY thing;
    member__of             : OPTIONAL SET [1:?] OF class;
  ENTITY spatio_temporal_extent;
    part__of               : OPTIONAL SET [1:?] OF spatio_temporal_extent;
    beginning              : OPTIONAL event;
    ending                 : OPTIONAL event;
    part_of_possible_world : SET [1:?] OF possible_world;
    temporal__part_of      : OPTIONAL SET [1:?] OF spatio_temporal_extent;
    aggregated_into        : OPTIONAL SET [1:?] OF spatio_temporal_extent;
  INVERSE
    consists__of           : SET OF spatio_temporal_extent FOR part__of;
  ENTITY state;
    temporal_part_of       : OPTIONAL SET [1:?] OF individual;
  ENTITY period_of_time;
    temporal_part_of_      : OPTIONAL SET [1:?] OF possible_world;
    member_of              : OPTIONAL SET [1:?] OF class_of_period_of_time;
  ENTITY possible_world;
    member_of              : OPTIONAL SET [1:?] OF class_of_possible_world;
END_ENTITY;
Clone this wiki locally