Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromxavier committed Sep 19, 2022
1 parent fb38252 commit 65ae103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ function MOI.get(model::VirtualQUBOModel{T}, vp::MOI.VariablePrimal, x::VI) wher
end

MOI.get(::VirtualQUBOModel, ::MOI.SolverName) = "Virtual QUBO Model"
MOI.get(::VirtualQUBOModel, ::MOI.SolverVersion) = v"0.1.0"
MOI.get(::VirtualQUBOModel, ::MOI.SolverVersion) = v"0.1.1"
MOI.get(model::VirtualQUBOModel, rs::MOI.RawSolver) = MOI.get(model.optimizer, rs)

PBO.showvar(x::VI) = PBO.showvar(x.value)
PBO.varcmp(x::VI, y::VI) = PBO.varcmp(x.value, y.value)

const Optimizer{T} = VirtualQUBOModel{T}
const Optimizer{T} = VirtualQUBOModel{T}

2 comments on commit 65ae103

@pedromxavier
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 created: JuliaRegistries/General/68548

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>" 65ae103207253a8eb23c3aa5c2c5da726c1c82b1
git push origin v0.1.1

Please sign in to comment.