Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 514 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 514 Bytes

QuantumAnnealingInterface.jl

QUBODRIVERS

JuMP interface for LANL's QuantumAnnealing.jl

How to

using JuMP
using QuantumAnnealingInterface

model = Model(QuantumAnnealingInterface.Optimizer)

Q = [ -1  2  2
       2 -1  2
       2  2 -1 ]

@variable(model, x[1:3], Bin)
@objective(model, Min, x' * Q * x)

optimize!(model)