TPTP Problem File: MGT110+1.p

View Solutions - Solve Problem

%--------------------------------------------------------------------------
% File     : MGT110+1 : TPTP v9.3.1. Released v9.3.0.
% Domain   : Management
% Problem  : Closed-world: no Permission for uncovered action
% Version  : Especial.
% English  : No perm rule for modify_act. No open-world closure.
%            Permission(portal,modify_act,theater_ds) is NOT derivable.

% Refs     : [MC+26] Mustafa et al. (2026), Axis Decomposition for ODRL
% Source   : [MC+26]
% Names    : GRND007-closed-1.p [MC+26]

% Status   : Satisfiable
% Rating   : 0.00 v9.3.0
% Syntax   : Number of formulae    :    4 (   3 unt;   0 def)
%            Number of atoms       :    6 (   0 equ)
%            Maximal formula atoms :    3 (   1 avg)
%            Number of connectives :    3 (   1   ~;   0   |;   2   &)
%                                         (   0 <=>;   0  =>;   0  <=;   0 <~>)
%            Maximal formula depth :    5 (   2 avg)
%            Maximal term depth    :    1 (   1 avg)
%            Number of predicates  :    6 (   6 usr;   0 prp; 1-3 aty)
%            Number of functors    :    3 (   3 usr;   3 con; 0-0 aty)
%            Number of variables   :    1 (   0   !;   1   ?)
% SPC      : FOF_SAT_RFO_NEQ

% Comments : 
%--------------------------------------------------------------------------
%----Layer 1: Problem-specific axioms (subset of Ax5.1-5.11, A1-A3, B1-B3)
%----Ground instance (gamma)
fof(agent_portal,axiom,
    agent(portal) ).

fof(action_modify,axiom,
    action(modify_act) ).

fof(target_theater,axiom,
    target(theater_ds) ).

fof(no_permission_modify,axiom,
    ~ ? [L] :
        ( permission(L)
        & bearer(L,portal)
        & cnt(L,modify_act,theater_ds) ) ).

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