TPTP Axioms File: HWC001-0.ax


%--------------------------------------------------------------------------
% File     : HWC001-0 : TPTP v8.2.0. Released v1.0.0.
% Domain   : Hardware Creation
% Axioms   : Definitions of AND, OR and NOT
% Version  : [WO+92] axioms.
%            Axiom formulation : Ground axioms.
% English  :

% Refs     : [WO+92] Wos et al. (1992), Automated Reasoning: Introduction a
% Source   : [ANL]
% Names    :

% Status   : Satisfiable
% Syntax   : Number of clauses     :   10 (  10 unt;   0 nHn;  10 RR)
%            Number of literals    :   10 (  10 equ;   0 neg)
%            Maximal clause size   :    1 (   1 avg)
%            Maximal term depth    :    2 (   1 avg)
%            Number of predicates  :    1 (   0 usr;   0 prp; 2-2 aty)
%            Number of functors    :    5 (   5 usr;   2 con; 0-2 aty)
%            Number of variables   :    0 (   0 sgn)
% SPC      : 

% Comments :
%--------------------------------------------------------------------------
cnf(and_definition1,axiom,
    and(n0,n0) = n0 ).

cnf(and_definition2,axiom,
    and(n0,n1) = n0 ).

cnf(and_definition3,axiom,
    and(n1,n0) = n0 ).

cnf(and_definition4,axiom,
    and(n1,n1) = n1 ).

cnf(or_definition1,axiom,
    or(n0,n0) = n0 ).

cnf(or_definition2,axiom,
    or(n0,n1) = n1 ).

cnf(or_definition3,axiom,
    or(n1,n0) = n1 ).

cnf(or_definition4,axiom,
    or(n1,n1) = n1 ).

cnf(not_definition1,axiom,
    not(n0) = n1 ).

cnf(not_definition2,axiom,
    not(n1) = n0 ).

%--------------------------------------------------------------------------