Changes between Version 7 and Version 8 of Libraries


Ignore:
Timestamp:
05/22/23 15:04:24 (3 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Libraries

    v7 v8  
    44
    55== `bundle`
     6
     7Uses: [#op]
     8Header: [https://vsl.cis.udel.edu/trac/civl/browser/CIVL/trunk/mods/dev.civl.abc/src/include/headers/bundle.cvh bundle.cvh].
     9
    610
    711CIVL-C includes a type named `$bundle`, declared in the CIVL-C standard header
     
    6064== `concurrency.cvh`
    6165
    62 == `op.h`
     66== `op.h` #=op
    6367
    6468Defines an enumerated type `$operation` with the following values:
    65 | Constant | Description |
    66 | `_NO_OP`  | no operation |
    67 | `_MAX`    | maximum |
    68 | `_MIN`    | minimun |
    69 |  _SUM     | sum  |
    70 |  _PROD    | product |
    71 |  _LAND    | logical and |
    72 |  _BAND    | bit-wise and |
    73 |  _LOR     | logical or |
    74 |  _BOR     | bit-wise or |
    75 |  _LXOR    | logical exclusive or |
    76 |  _BXOR    | bit-wise exclusive or |
    77 |  _MINLOC  | min value and location |
    78 |  _MAXLOC  | max value and location |
    79 |  _EQ      | equal to |
    80 |  _NEQ     | not Equal to |
     69||= Constant =||= Description =||
     70||`_NO_OP`  ||no operation ||
     71||`_MAX`    ||maximum ||
     72||`_MIN`    ||minimun ||
     73||`_SUM`    ||sum  ||
     74||`_PROD`   ||product ||
     75||`_LAND`   ||logical and ||
     76||`_BAND`   ||bit-wise and ||
     77||`_LOR`    ||logical or ||
     78||`_BOR`    ||bit-wise or ||
     79||`_LXOR`   ||logical exclusive or ||
     80||`_BXOR`   ||bit-wise exclusive or ||
     81||`_MINLOC` ||min value and location ||
     82||`_MAXLOC` ||max value and location ||
     83||`_EQ`     ||equal to ||
     84||`_NEQ`    ||not Equal to ||
    8185
    82 
    83 typedef enum Operation $operation;
    8486
    8587