Skip to content

Commit

Permalink
Update sets_reification.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
dourouc05 committed Mar 14, 2021
1 parent be494ca commit 803e7ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sets_reification.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ end
The logical conjunction operator ∧ (AND).
``\\{(x, y\\dots) \\in \\mathbb{R}^a \\times \\mathbb{R}^b\\dots | x \\in \mathbb{S_1} \\land y \\in \mathbb{S_2} \\dots \\}``.
``\\{(x, y\\dots) \\in \\mathbb{R}^a \\times \\mathbb{R}^b\\dots | x \\in \\mathbb{S_1} \\land y \\in \\mathbb{S_2} \\dots \\}``.
"""
struct Conjunction{Ts::Tuple} <: MOI.AbstractVectorSet
struct Conjunction{Ts <: Tuple} <: MOI.AbstractVectorSet
constraints::Ts
end

Expand All @@ -165,9 +165,9 @@ end
The logical disjunction operator ∨ (AND).
``\\{(x, y\\dots) \\in \\mathbb{R}^a \\times \\mathbb{R}^b\\dots | x \\in \mathbb{S_1} \\lor y \\in \mathbb{S_2} \\dots \\}``.
``\\{(x, y\\dots) \\in \\mathbb{R}^a \\times \\mathbb{R}^b\\dots | x \\in \\mathbb{S_1} \\lor y \\in \\mathbb{S_2} \\dots \\}``.
"""
struct Disjunction{Ts::Tuple} <: MOI.AbstractVectorSet
struct Disjunction{Ts <: Tuple} <: MOI.AbstractVectorSet
constraints::Ts
end

Expand Down

2 comments on commit 803e7ae

@dourouc05
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/31896

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.1 -m "<description of version>" 803e7ae248221818d60969cf5437e038ae71d69d
git push origin v0.1.1

Please sign in to comment.