Skip to content

Commit efe17f4

Browse files
committed
Fix typo...
1 parent 216fa86 commit efe17f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/lpmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ create a Linear model from a QPS file:
1717
qps = readqps("QAFIRO.SIF")
1818
lp = LinearModel(qps)
1919
"""
20-
mutable struct LinearModel{T, S, M1, M2} <: AbstractQuadraticModel{T, S}
20+
mutable struct LinearModel{T, S, M1, M2} <: AbstractQuadraticModel{T, S, M1, M2}
2121
meta::NLPModelMeta{T, S}
2222
counters::Counters
2323
data::QPData{T, S, M1, M2}

src/presolve/presolve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ include("primal_constraints.jl")
137137
include("free_rows.jl")
138138
include("postsolve_utils.jl")
139139

140-
mutable struct PresolvedQuadraticModel{T, S, M1, M2} <: AbstractQuadraticModel{T, S}
140+
mutable struct PresolvedQuadraticModel{T, S, M1, M2} <: AbstractQuadraticModel{T, S, M1, M2}
141141
meta::NLPModelMeta{T, S}
142142
counters::Counters
143143
data::QPData{T, S, M1, M2}

src/qpmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ based on a `QPData` with dense matrices will convert the field `data` to a `QPDa
6666
Its in-place variant `SlackModel!` specific to QuadraticModels will only work with a `QuadraticModel` based on
6767
a `QPData` with SparseMatricesCOO.
6868
"""
69-
mutable struct QuadraticModel{T, S, M1, M2} <: AbstractQuadraticModel{T, S}
69+
mutable struct QuadraticModel{T, S, M1, M2} <: AbstractQuadraticModel{T, S, M1, M2}
7070
meta::NLPModelMeta{T, S}
7171
counters::Counters
7272
data::QPData{T, S, M1, M2}

0 commit comments

Comments
 (0)