Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Anneal for QUBODrivers #72

Merged
merged 6 commits into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 11 additions & 17 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
name = "ToQUBO"
uuid = "9a412ddf-83fa-43b6-9748-7843c851aa65"
authors = [
"pedromxavier <pedroxavier@psr-inc.com>",
"pedroripper <pedroripper@psr-inc.com>",
"joaquimg <joaquim@psr-inc.com>",
"AndradeTiago <tiago.andrade@psr-inc.com>",
"bernalde <dbernalneira@usra.edu>",
]
version = "0.1.5"
name = "ToQUBO"
uuid = "9a412ddf-83fa-43b6-9748-7843c851aa65"
authors = ["pedromxavier <pedroxavier@psr-inc.com>", "pedroripper <pedroripper@psr-inc.com>", "joaquimg <joaquim@psr-inc.com>", "AndradeTiago <tiago.andrade@psr-inc.com>", "bernalde <dbernalneira@usra.edu>"]
version = "0.1.6"

[deps]
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
QUBOTools = "60eb5b62-0a39-4ddc-84c5-97d2adff9319"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
QUBOTools = "60eb5b62-0a39-4ddc-84c5-97d2adff9319"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"

[compat]
MathOptInterface = "1"
QUBOTools = "0.6.1"
julia = "1.6"
MathOptInterface = "1"
QUBOTools = "0.8.0"
julia = "1.6"
3 changes: 1 addition & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[deps]
Anneal = "e4d9eb7f-b088-426e-aeb5-1c0dae3d8abb"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
DWaveNeal = "870cdf72-5502-4b10-839c-127ceab78f22"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
MQLib = "16f11440-1623-44c9-850c-358a6c72f3c9"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
QUBODrivers = "a3f166f7-2cd3-47b6-9e1e-6fbfe0449eb0"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
ToQUBO = "9a412ddf-83fa-43b6-9748-7843c851aa65"

[compat]
Anneal = "0.6"
CSV = "0.10"
DataFrames = "1.3"
Documenter = "0.27"
Expand Down
12 changes: 6 additions & 6 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[deps]
Anneal = "e4d9eb7f-b088-426e-aeb5-1c0dae3d8abb"
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
QUBODrivers = "a3f166f7-2cd3-47b6-9e1e-6fbfe0449eb0"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Anneal = "0.6.2"
JuMP = "1"
JuMP = "1"
QUBODrivers = "0.2"
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const VI = MOI.VariableIndex
const CI = MOI.ConstraintIndex

using ToQUBO: ToQUBO, PBO
using Anneal
using QUBODrivers
using LinearAlgebra
using TOML

Expand Down