Skip to content

Logic Operators Tile#


alt text

A tile that contains a set of logical operators.

Description#

Description

Output#

AND#

Info
  • Return
    The operator itself.
    
  • Description

    Logical conjunction is an operation on two logical values that produces a value of true if and only if both of its operands are true.   
    

  • Usage

    It will return the operator used in the Evaluator Tile.
    

OR#

Info
  • Return
    The operator itself.
    
  • Description
    Logical disjunction is an operation on two logical values that produces a value of true if at least one of its operands is true.   
    
  • Usage
    It will return the operator used in the Evaluator Tile.
    

NOT#

Info
  • Return
    The operator itself.
    
  • Description

    In logic, negation is an operation that takes a proposition P and negates it.    
    

  • Usage

    It will return the operator used in the Evaluator Tile.
    

Real Signature#

Signature

  • A plain language description of the function associated with the tile
    def arc_cos(x):
        return math.acos(x)