Skip to content

Commit

Permalink
global_diamond, global_box
Browse files Browse the repository at this point in the history
  • Loading branch information
giopaglia committed Jul 21, 2023
1 parent 647a7a4 commit 2774094
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/SoleLogics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ export AbstractWorldSet, WorldSet

export Interval, Interval2D, OneWorld

export global_diamond, global_box

include("modal-logic.jl")

export LeftmostLinearForm, LeftmostConjunctiveForm, LeftmostDisjunctiveForm, Literal
Expand Down
6 changes: 4 additions & 2 deletions src/modal-logic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -973,10 +973,12 @@ See also
dual(op::DiamondRelationalOperator) = BoxRelationalOperator{relationtype(op)}()
dual(op::BoxRelationalOperator) = DiamondRelationalOperator{relationtype(op)}()

global_diamond = DiamondRelationalOperator(globalrel)
global_box = BoxRelationalOperator(globalrel)

const BASE_MULTIMODAL_OPERATORS = [BASE_PROPOSITIONAL_OPERATORS...,
DiamondRelationalOperator(globalrel),
BoxRelationalOperator(globalrel),
global_diamond,
global_box,
DiamondRelationalOperator(identityrel),
BoxRelationalOperator(identityrel),
]
Expand Down

0 comments on commit 2774094

Please sign in to comment.