Skip to content

Commit

Permalink
refreshing
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Feb 4, 2025
1 parent 2e88390 commit 791f0c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion reasoning/conflict-resolution-test/conflict-resolution.pl
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
% policy conflict resolution example

:- op(1200, xfx, :+).
:- discontiguous (:+)/2.

:- discontiguous((:+)/2).

% context
'<https://eyereasoner.github.io/ns#accessControl>'(User, Resource, Decision) :-
Expand Down
2 changes: 1 addition & 1 deletion reasoning/dijkstra-test/dijkstra.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

:- op(1200, xfx, :+).

:- discontiguous (:+)/2.
:- discontiguous((:+)/2).

:- dynamic(edge/2).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

:- op(1200, xfx, :+).

:- discontiguous (:+)/2.
:- discontiguous user_permission/3.
:- discontiguous((:+)/2).
:- discontiguous(user_permission/3).

:- dynamic(user_permission/3).

Expand Down

0 comments on commit 791f0c1

Please sign in to comment.