Skip to content

Commit

Permalink
Add missing constant definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromxavier committed Sep 22, 2023
1 parent 47169ae commit e4a309d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ext/QUBOTools_MOI/QUBOTools_MOI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ module QUBOTools_MOI
import QUBOTools
import MathOptInterface as MOI

const MOIU = MOI.Utilities
const VI = MOI.VariableIndex
const MOIU = MOI.Utilities
const VI = MOI.VariableIndex
const SAF{T} = MOI.ScalarAffineFunction{T}
const SAT{T} = MOI.ScalarAffineTerm{T}
const SQF{T} = MOI.ScalarQuadraticFunction{T}
const SQT{T} = MOI.ScalarQuadraticTerm{T}

include("error.jl")
include("varlt.jl")
Expand Down

0 comments on commit e4a309d

Please sign in to comment.