Changes between Version 2 and Version 3 of CurrentlyProposedLanguage


Ignore:
Timestamp:
Nov 4, 2010 4:11:08 PM (13 years ago)
Author:
sunshine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CurrentlyProposedLanguage

    v2 v3  
    2828||Meaning                          || Operator and example ||
    2929||A occurs after B                 || B -> A               ||
    30 ||A and B occur concurrently       || A | | B               ||           
     30||A and B occur concurrently       || A | | B              ||           
    3131||A lasts T time                   || A,,T,,               ||
    3232||A occurs T time after B          || B ->,,T,, A          ||
     33
     34= Existential, cardinality and modal operators =
     35We want to be able to denote how many objects or events of a given type must/may occur.
     36Meaning Operator and example
     37||Every object A                     || each A     ||
     38||Some objects A                     || some A     ||
     39||Some object A called a1            || some A a1  ||
     40||A must occur                       || A          ||
     41||A may occur                        || [A]        ||
     42||Exactly N objects/events of type A || |A|,,N,,   ||
     43||At least N objects/events of type A|| |A|,,>=N,, ||
     44||At most N objects/events of type A || |A|,,<=N,, ||