Event and tenses

What is the general design of Eberban’s time system?

Time is represented using a graph of instants. It supports multiple possible futures and pasts, parallel and fictional universes, with one timeline being considered the real timeline, the events that actually occured and will occur. The implicit context argument with some predicates allows handling time-related stuff behind the scene. Physical entities (pan) are associated with the space-time volume (skan) they occupy.

Common timespan

Each use of pan interacts with a time interval stored in the context called the common timespan. Each pan states that the physical entity exists during the common timespan (but may exist outside of it), and words describing an action like bure (eat) states that the common timespan is contained during the timespan of the action. The common timespan is thus the intersection of all the time spans of all involved physical entities and actions.

This common timespan is placed in the context by ski and time relations words, which constrain it to be maximal (given some timespan x, there doesn’t exist another timespan y that contains x which makes the proposition true; this timespan y is not contained by one or many timespans of involved physical entities or actions).

This design allows to easily express events involving many entities an actions. The sentence “In this room there is an cat, and you eating an apple” expresses the presence of the cat while you’re eating an apple. The existence of the cat, you, the apple and the action of eating all contains the common timespan.

Time anchor

The time anchor is a timespan that is automatically stated to be contained by the sentence common timespan.

Time relations

Time relations are embeded in an outer proposition and wraps an inner proposition (A slot) with a dedicated common timespan, and relates the outer common timespan with the inner common timespan. The predicates are transitive and ignore their E slot, which allows to directly use them after another predicate.

  • sre: Outer is before inner: end of outer is before the start of inner
  • sra: Outer starts inner: start of outer is start of inner
  • sro: Outer finishes inner: end of outer is end of inner
  • sru: Outer is after inner: start of outer is after the end of inner
  • srui: Outer contains inner
  • srei: Outer is contained by inner
  • sri: Outer is unconstrained by inner

sre (before) and sru (after) have an O slot for the duration separating the 2 timespans. As giving a precise duration may be difficult or too precise, compounds with time units are made to give a vague time scale of such duration :

  • e ti sre/sru: very short time for common speech, less than 1 second (excluded)
  • e vola sre/sru: few seconds, between 1 second (included) and 1 minute (excluded)
  • e jero sre/sru: few minutes, between 1 minute (included) and 1 hour (excluded)
  • e sura sre/sru: few hours, between 1 hour (included) and 1 day (excluded)
  • e dena sre/sru: few days, between 1 day (included) and 1 week (excluded)
  • e kora sre/sru: few weeks, between 1 week (included) and 1 month (excluded)
  • e gare sre/sru: few months, between 1 month (included) and 1 year (excluded)
  • e bire sre/sru: more than 1 year (included)

How are events modeled?

An event (ski) is modeled as an object containing the following information:

  • The proposition describing the event
  • The set of all physical entities involved in the proposition, each with their associated space-time volume
  • Possibly other informations, this will be figured out with usage.

Event words

ski allows to related an event (E slot) with its defining propositon (A slot). It evaluates this proposition with its own inner common timespan, and doesn’t relate it with the outer common timespan. “I like the event of [you dance]” doesn’t means that the “liking” and the “dancing” occurs at the same time. Inside a ski or in a sentence, skul can be used to refer to the current event.

skun allows to state that a given event (E slot) is occuring in the outer common timespan with the exact same set of physical entities it was defined with. “That (dancing) occured before lunch” speaks about the same event (the one where you dance and that I liked).

TODO

Space relations

TODO